Skip to content

AUTHORIZATION_URL and ACCESS_TOKEN_URL attributes usage #83

AUTHORIZATION_URL and ACCESS_TOKEN_URL attributes usage

AUTHORIZATION_URL and ACCESS_TOKEN_URL attributes usage #83

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: "ubuntu-latest"
strategy:
matrix:
include:
- python: "3.7"
env: py37-fastapi68
- python: "3.8"
env: py38-fastapi68
- python: "3.10"
env: py310-fastapi68
- python: "3.11"
env: py311-fastapi68
- python: "3.7"
env: py37-fastapi84
- python: "3.9"
env: py39-fastapi84
- python: "3.10"
env: py310-fastapi84
- python: "3.11"
env: py311-fastapi84
- python: "3.7"
env: py37-fastapi100
- python: "3.9"
env: py39-fastapi100
- python: "3.10"
env: py310-fastapi100
- python: "3.11"
env: py311-fastapi100
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install --upgrade pip
sh build.sh
pip install tox tox-gh-actions
- name: Run tests using tox
run: tox -e ${{ matrix.env }}