Skip to content

Commit

Permalink
ci: updates
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Feb 14, 2024
1 parent 8d3d283 commit 1a81860
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 42 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI Tests

on: [ push ]
on: [ push, pull_request ]

jobs:
perl_tester:
Expand All @@ -16,16 +16,16 @@ jobs:
- "5.26"

container:
image: perldocker/perl-tester:${{ matrix.perl-version }}
image: perl:${{ matrix.perl-version }}

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: install-with-cpanm
uses: perl-actions/install-with-cpanm@stable
uses: perl-actions/install-with-cpanm@1.5
with:
install: |
Regexp::Common
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Coverage Test

on: [ push ]
on: [ push, pull_request ]

jobs:
perl_tester:
Expand All @@ -15,16 +15,15 @@ jobs:

container:
image: perl:${{ matrix.perl-version }}
# image: perldocker/perl-tester:${{ matrix.perl-version }}

steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Install Perl Modules
uses: perl-actions/install-with-cpanm@v1
uses: perl-actions/install-with-cpanm@v1.5
with:
install: |
Regexp::Common
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/critic.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Perl Critic

on: [ push ]
on: [ push, pull_request ]

jobs:
perl_tester:
Expand All @@ -18,12 +18,12 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Install Perl Modules
uses: perl-actions/install-with-cpanm@v1
uses: perl-actions/install-with-cpanm@v1.5
with:
install: |
Test::More
Expand Down
31 changes: 0 additions & 31 deletions .travis.yml

This file was deleted.

0 comments on commit 1a81860

Please sign in to comment.