Skip to content

Commit dc5443b

Browse files
author
nobody
committed
Removed makefile usage, just run perl. Added Path::Tiny
1 parent 324190b commit dc5443b

1 file changed

Lines changed: 16 additions & 13 deletions

File tree

.github/workflows/makefile.yml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
1-
name: Makefile CI
1+
name: Perl Test
22

3-
on:
4-
push:
5-
branches: [ "main" ]
6-
pull_request:
7-
branches: [ "main" ]
3+
on: [push, pull_request]
84

95
jobs:
10-
build:
11-
6+
test:
127
runs-on: ubuntu-latest
138

149
steps:
15-
- uses: actions/checkout@v4
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
13+
- name: Set up Perl
14+
uses: shogo82148/actions-setup-perl@v1
15+
with:
16+
perl-version: '5.32'
1617

17-
- name: Run check
18-
env:
19-
API_KEY: ${{ secrets.CLAUDE_API_KEY }}
20-
run: make check
18+
- name: Install dependencies
19+
run: |
20+
cpanm --notest Path::Tiny
2121
22+
- name: Run tests
23+
run: |
24+
PERL4LIB=$PWD/lib perl test-gpt.pl

0 commit comments

Comments
 (0)