We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 324190b commit dc5443bCopy full SHA for dc5443b
1 file changed
.github/workflows/makefile.yml
@@ -1,21 +1,24 @@
1
-name: Makefile CI
+name: Perl Test
2
3
-on:
4
- push:
5
- branches: [ "main" ]
6
- pull_request:
7
+on: [push, pull_request]
8
9
jobs:
10
- build:
11
-
+ test:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v4
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ - name: Set up Perl
+ uses: shogo82148/actions-setup-perl@v1
+ with:
16
+ perl-version: '5.32'
17
- - name: Run check
18
- env:
19
- API_KEY: ${{ secrets.CLAUDE_API_KEY }}
20
- run: make check
+ - name: Install dependencies
+ run: |
+ cpanm --notest Path::Tiny
21
22
+ - name: Run tests
23
24
+ PERL4LIB=$PWD/lib perl test-gpt.pl
0 commit comments