Skip to content

Merge pull request #792 from jonasbn/two_minor_spelling_mistakes #206

Merge pull request #792 from jonasbn/two_minor_spelling_mistakes

Merge pull request #792 from jonasbn/two_minor_spelling_mistakes #206

Workflow file for this run

name: coverage
on:
pull_request:
push:
branches:
- develop
jobs:
build:
runs-on: 'ubuntu-latest'
name: Coverage
container:
image: perl:stable
steps:
- uses: actions/checkout@v2
- run: cpanm --quiet --notest --installdeps .
- run: cpanm --quiet --notest App::Yath Devel::Cover Devel::Cover::Report::Coveralls
- run: PERL5OPT=-MDevel::Cover yath test --qvf t/
- run: cover -report coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}