1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-12-22 00:46:18 +00:00

Update GitHub actions

This commit is contained in:
Alban Féron 2024-05-19 17:07:09 +02:00
parent df51cabb41
commit 002f223eb1
No known key found for this signature in database
GPG Key ID: 8CE0313646D16165

View File

@ -34,9 +34,9 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
@ -48,5 +48,7 @@ jobs:
coverage run -m unittest
coverage run -a -m unittest tests.net.suite
- name: Upload coverage
uses: codecov/codecov-action@v1.0.15
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
if: ${{ !cancelled() }}