Skip to content

Commit

Permalink
test: debug build required for tests to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
craigmayhew committed May 23, 2024
1 parent 61c14d9 commit 5d5a311
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ jobs:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: cargo test --verbose

tests:
runs-on: ubuntu-latest
Expand All @@ -28,7 +24,7 @@ jobs:
- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: cargo test --verbose
run: cargo build && cargo test --verbose

review:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5d5a311

Please sign in to comment.