Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,17 @@ updates:
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
groups:
major-updates:
patterns:
- "*"
update-types:
- "major"
minor-and-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"
cooldown:
default-days: 7
16 changes: 10 additions & 6 deletions .github/workflows/dzil-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@ on:
- "*"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build-job:
name: Build distribution
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.38
image: perldocker/perl-tester:5.42
steps:
- uses: actions/checkout@v6
- name: Run Tests
Expand All @@ -33,7 +37,7 @@ jobs:
needs: build-job
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.38
image: perldocker/perl-tester:5.42
steps:
- uses: actions/checkout@v6 # codecov wants to be inside a Git repository
- uses: actions/download-artifact@v7
Expand Down Expand Up @@ -105,9 +109,9 @@ jobs:
with:
name: build_dir
path: .
- name: install deps using cpm
uses: perl-actions/install-with-cpm@v1
- uses: perl-actions/setup-cpm@v1
with:
cpanfile: "cpanfile"
args: "--with-suggests --with-recommends --with-test"
version: compat
- name: install deps using cpm
run: cpm install -g --cpanfile cpanfile --with-suggests --with-recommends --with-test
- run: prove -lr t