Skip to content

Commit

Permalink
ci: separate steps; upgrade checkout to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
szabgab committed Jun 14, 2023
1 parent 56cc794 commit b3a41e4
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,27 @@ jobs:

name: Build on Linux with Perl ${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Regular tests
- name: Version of Perl
run: |
perl -v
- name: Install Module::Install
run: |
cpanm --notest Module::Install
- name: Install Dependencies
run: |
cpanm --notest --installdeps .
- name: Regular tests
run: |
perl Makefile.PL
make
make manifest
make test
perl build_site.pl --sourcedir . --destdir ~/padre.perlide.org
./Build
./Build test

0 comments on commit b3a41e4

Please sign in to comment.