Add Wireup in fastapi aliases #125
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: Integration tests | |
on: [push] | |
jobs: | |
test: | |
name: Run Tox | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- name: Create venv | |
run: python -m venv .venv | |
- name: Install dependencies | |
run: | | |
make install | |
- name: Run tox | |
run: .venv/bin/tox |