Add code coverage #1725
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test | |
on: [pull_request] | |
jobs: | |
docker: | |
runs-on: ubuntu-22.04 | |
name: Docker | |
steps: | |
- uses: actions/checkout@v3 | |
- name: docker build | |
run: docker build . -t metacpan/metacpan-web:latest | |
- name: run Perl tests | |
run: > | |
docker run -i metacpan/metacpan-web | |
carton exec prove -lr --jobs 2 t | |
test: | |
runs-on: ubuntu-20.04 | |
name: Dockerless | |
strategy: | |
fail-fast: false | |
matrix: | |
perl-version: | |
- "5.30" | |
resolver: | |
- metacpan | |
- snapshot | |
container: | |
image: perl:${{ matrix.perl-version }} | |
env: | |
DEVEL_COVER_OPTIONS: "-ignore,^local/" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- run: npm install | |
- run: apt-get update && apt-get -y install libcmark-dev | |
- name: Install Carton | |
uses: perl-actions/install-with-cpm@stable | |
with: | |
install: Carton | |
sudo: false | |
- name: Install CPAN deps | |
uses: perl-actions/install-with-cpm@stable | |
with: | |
cpanfile: "cpanfile" | |
sudo: false | |
args: > | |
--resolver ${{ matrix.resolver }} | |
--show-build-log-on-failure | |
--local-lib-contained=local | |
- name: Run Tests | |
run: carton exec prove -lr --jobs 2 t | |
env: | |
TEST_TIDYALL_VERBOSE: 1 | |
- name: Run tests with coverage | |
if: matrix.resolver == 'snapshot' | |
run: carton exec prove -lr --jobs 2 t | |
env: | |
HARNESS_PERL_SWITCHES: -MDevel::Cover | |
- name: Upload coverage reports to Codecov | |
if: matrix.resolver == 'snapshot' | |
uses: codecov/codecov-action@v4.0.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |