chore(deps): update python docker tag to v3.12.6 #971
This file contains 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: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the latest version of rye | |
uses: eifinger/setup-rye@v1 | |
with: | |
enable-cache: true | |
- name: Install development dependencies | |
run: make install-ci | |
- name: Check for correct formatting, static typing, linting, etc... | |
run: | | |
make check-format | |
- name: Test with pytest | |
env: | |
RADIO_FRANCE_API_HOST: https://openapi.radiofrance.fr/v1/graphql | |
RADIO_FRANCE_API_HEALTHCHECK: https://openapi.radiofrance.fr/v1/.well-known/apollo/server-health | |
RADIO_FRANCE_API_TOKEN: ${{ secrets.RADIO_FRANCE_API_TOKEN }} | |
run: | | |
make test | |
- name: "Upload coverage to Codecov" | |
uses: codecov/codecov-action@v3 | |
with: | |
# codecov sometimes return error without reason | |
fail_ci_if_error: false |