We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f979206 commit f118105Copy full SHA for f118105
.github/workflows/rust.yml
@@ -23,6 +23,7 @@ jobs:
23
- uses: actions/checkout@v4
24
- name: Run tests
25
env:
26
+ AI_API_KEY: ${{ secrets.AI_API_KEY }}
27
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
28
run: cargo build && cargo test --verbose
29
@@ -32,6 +33,7 @@ jobs:
32
33
34
- name: GPT Code Review
35
36
37
38
run: cargo build && find . -path './target' -prune -o -name '*.rs' -exec echo {} \; -exec cat {} \; | ./target/debug/pipe-gpt --code-review --markdown
39
0 commit comments