update dependencies #101
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code coverage | |
| on: | |
| push | |
| env: | |
| XDG_CACHE_HOME: .cache | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| - name: Setup PDM | |
| uses: pdm-project/setup-pdm@v4 | |
| - name: Install dependencies | |
| run: pdm install -G test | |
| - name: Generate coverage report | |
| env: | |
| SETTINGS_INI: ${{ secrets.SETTINGS_INI }} | |
| SPOTIPY_CACHE: ${{ secrets.SPOTIPY_CACHE }} | |
| run: | | |
| cat <<< "$SETTINGS_INI" > spotify_to_ytmusic/settings.ini | |
| mkdir -p $XDG_CACHE_HOME/spotify_to_ytmusic | |
| cat <<< "$SPOTIPY_CACHE" > $XDG_CACHE_HOME/spotify_to_ytmusic/spotipy.cache | |
| pdm run coverage run | |
| pdm run coverage xml | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| flags: unittests | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} |