Skip to content

Commit

Permalink
ci: set the github token for embedded postgresql
Browse files Browse the repository at this point in the history
The embedded postgresql dependency requires using the github API.

Not having a github token makes this an unauthenticated request, which
has stricter API rate limits. Providing the github token show raise
those limits.
  • Loading branch information
ctron committed Feb 25, 2025
1 parent 4686050 commit 2f72e0e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
- name: Test
run: cargo test --all-features -- --nocapture
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" # for embedded postgresql
RUST_LOG: warn,sqlx=error,sea_orm=error
RUST_MIN_STACK: 50000000 # 50 MB
- name: Export and Validate Generated Openapi Spec
Expand Down

0 comments on commit 2f72e0e

Please sign in to comment.