Skip to content

Commit

Permalink
Minor bug fixes, optimizations, and updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bbye98 committed Nov 29, 2023
1 parent 09373ba commit 1974823
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: continuous-integration
name: Continuous Integration
on: [push]
env:
SPOTIFY_CLIENT_ID: ${{secrets.SPOTIFY_CLIENT_ID}}
Expand Down Expand Up @@ -31,12 +31,16 @@ jobs:
- name: install-dependencies
run: |
python3 -m pip install -r requirements_minimal.txt
- name: ruff-lint
- name: lint-ruff
run: |
python3 -m pip install ruff
ruff --target-version=py39 .
continue-on-error: true
- name: pytest-test
- name: test-pytest
run: |
python3 -m pip install pytest
pytest
pytest
- name: coverage-codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

0 comments on commit 1974823

Please sign in to comment.