Skip to content

Commit

Permalink
Add names to workflow steps
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed May 3, 2024
1 parent bb228ac commit f72e1c0
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/perltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,23 @@ jobs:
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: sudo apt-get install pandoc
- run: perl -V
- run: cpanm --installdeps .
- run: prove -lv t
- name: Install pandoc
run: sudo apt-get install pandoc
- name: Perl version
run: perl -V
- name: Install CPAN dependencies
run: cpanm --installdeps .
- name: Run tests
run: prove -lv t

coverage:
runs-on: ubuntu-latest
container: davorg/perl-coveralls:latest
name: Test coverage
steps:
- uses: actions/checkout@v4
- run: apt-get -y install pandoc
- name: Install pandoc
run: apt-get -y install pandoc
- name: Install modules
run: cpanm -n --installdeps .
- name: Coverage
Expand Down

0 comments on commit f72e1c0

Please sign in to comment.