Skip to content

Commit

Permalink
Add client credentials to ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bbye98 committed Nov 12, 2023
1 parent a5f8ae1 commit 7258e8b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
name: continuous-integration
on: [push]
env:
SPOTIFY_CLIENT_ID: ${{secrets.SPOTIFY_CLIENT_ID}}
SPOTIFY_CLIENT_SECRET: ${{secrets.SPOTIFY_CLIENT_SECRET}}
SPOTIFY_SP_DC: ${{secrets.SPOTIFY_SP_DC}}
TIDAL_CLIENT_ID: ${{secrets.TIDAL_CLIENT_ID}}
TIDAL_CLIENT_SECRET: ${{secrets.TIDAL_CLIENT_SECRET}}
TIDAL_PRIVATE_CLIENT_ID: ${{secrets.TIDAL_PRIVATE_CLIENT_ID}}
TIDAL_PRIVATE_CLIENT_SECRET: ${{secrets.TIDAL_PRIVATE_CLIENT_SECRET}}
jobs:
build:
name: continuous-integration-${{matrix.python-version}}
Expand All @@ -26,7 +34,7 @@ jobs:
- name: ruff-lint
run: |
python3 -m pip install ruff
ruff --format=github --target-version=py39 .
ruff --target-version=py39 .
continue-on-error: true
- name: pytest-test
run: |
Expand Down

0 comments on commit 7258e8b

Please sign in to comment.