Skip to content

remove 20 year old message about namespace change #44

remove 20 year old message about namespace change

remove 20 year old message about namespace change #44

Workflow file for this run

# see https://metacpan.org/pod/Devel::Cover::Report::Coveralls for a good
# example workflow.
on:
push:
branches:
- "master"
- "v1.0.0-testing"
- "github-ci-testing"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
perl-version:
- '5.30'
# - '5.32'
# - 'latest'
container:
image: perldocker/perl-tester:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v4
- name: Test
run: |
dzil authordeps --missing | cpm install --global -w 16 --no-test -
dzil listdeps --author --missing | cpm install --global -w 16 --no-test -
dzil test --all --keep
(cd .build/latest/ && cover -test -ignore local/ -report Coveralls)
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}