Skip to content

Update Sphinx copyright #201

Update Sphinx copyright

Update Sphinx copyright #201

Workflow file for this run

name: CI
on:
push:
branches: [develop, master]
pull_request:
branches: [develop, master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
poetry run pip install --upgrade pip
- name: Lint with ruff
run: |
poetry run ruff check .
- name: Type checking with MyPy
run: |
poetry run mypy --strict
- name: Test with pytest
run: |
poetry run pytest --cov-report term-missing --cov=sqlalchemy_things
poetry run coverage xml
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
flags: unit