Skip to content

chore(deps): update dependency types-requests to v2.31.0.6 #903

chore(deps): update dependency types-requests to v2.31.0.6

chore(deps): update dependency types-requests to v2.31.0.6 #903

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install development dependencies
run: make install-dev
- 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