We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f384b3 commit 77508ddCopy full SHA for 77508dd
.github/workflows/test.yaml
@@ -5,7 +5,10 @@ on:
5
- main
6
paths-ignore:
7
- README.md
8
- pull_request:
+ pull_request_target:
9
+ types:
10
+ - labeled
11
+ - unlabeled
12
branches:
13
14
@@ -26,11 +29,11 @@ jobs:
26
29
run: make validate
27
30
- name: Install gptscript
28
31
run: |
- curl https://get.gptscript.ai/releases/default_linux_amd64_v1/gptscript -o gptscript
- chmod +x gptscript
32
+ curl https://get.gptscript.ai/releases/default_linux_amd64_v1/gptscript -o ./gptscriptexe
33
+ chmod +x ./gptscriptexe
34
- name: Run Tests
35
env:
- GPTSCRIPT_BIN: ./gptscript
36
+ GPTSCRIPT_BIN: ./gptscriptexe
37
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
38
run: make test
39
0 commit comments