Skip to content

refact!: remove tables concept + rewrite with FastAPI #66

refact!: remove tables concept + rewrite with FastAPI

refact!: remove tables concept + rewrite with FastAPI #66

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: python -m pip install poetry
- name: Install dependencies
run: python -m poetry install
- name: Test
run: coverage run -m unittest -v
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3