Skip to content

Merge pull request #8 from everysoftware/feature/docker-tests #9

Merge pull request #8 from everysoftware/feature/docker-tests

Merge pull request #8 from everysoftware/feature/docker-tests #9

Workflow file for this run

name: FastAPI CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install poetry
poetry config virtualenvs.create false
poetry install
- name: Lint
run: |
poetry run make format
poetry run make lint