Skip to content

Commit 93df7fc

Browse files
committed
CI/CD workflow
1 parent 6dc3be9 commit 93df7fc

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: test
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
container: perl:latest
12+
13+
steps:
14+
- name: checkout
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: install deps
20+
run: sh -c "cpanm -n File::ShareDir::Install ; cpanm -n --installdeps ."
21+
22+
- name: test
23+
run: sh -c "perl Makefile.PL ; make test"

0 commit comments

Comments
 (0)