Skip to content

fix(deps): update dependency fastapi to v0.114.2 #157

fix(deps): update dependency fastapi to v0.114.2

fix(deps): update dependency fastapi to v0.114.2 #157

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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:
# fail_ci_if_error: true