Skip to content

Commit a8acd16

Browse files
committed
add CI workflow
1 parent 3ee9586 commit a8acd16

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- content
7+
8+
jobs:
9+
build-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v1
14+
15+
- name: Setup Perl
16+
uses: shogo82148/actions-setup-perl@v1
17+
with:
18+
perl-version: '5.30'
19+
20+
- name: Build
21+
run: make test
22+

0 commit comments

Comments
 (0)