Skip to content

Add tools for managing constraints and converting IntegrityErrors #4

Add tools for managing constraints and converting IntegrityErrors

Add tools for managing constraints and converting IntegrityErrors #4

Workflow file for this run

name: Linting
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 3
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: make install
- name: Run linters
run: make lint