Skip to content

Commit 3612d5a

Browse files
committed
Move CI from Azure Pipelines to GitHub Actions
1 parent 47aaf08 commit 3612d5a

File tree

2 files changed

+37
-29
lines changed

2 files changed

+37
-29
lines changed

.github/workflows/ci.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Run tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test-matrix:
7+
name: ${{ matrix.platform.os-name }} with Perl ${{ matrix.perl-version }}
8+
runs-on: ${{ matrix.platform.runs-on }}
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
platform:
13+
- os-name: Linux
14+
runs-on: ubuntu-24.04
15+
16+
perl-version:
17+
- "5.40"
18+
# - 5.14
19+
20+
steps:
21+
- uses: actions/checkout@v4
22+
23+
- uses: shogo82148/actions-setup-perl@v1
24+
with:
25+
perl-version: ${{ matrix.perl-version }}
26+
27+
- name: Install Dist::Zilla and Test::Harness
28+
run: cpm install --global Dist::Zilla Test::Harness
29+
30+
- name: Install author deps
31+
run: cpm install --global $(dzil authordeps)
32+
33+
- name: Install module deps
34+
run: cpm install --global $(dzil listdeps --all)
35+
36+
- name: Run tests
37+
run: dzil test --all

azure-pipelines.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)