Skip to content

Release the work to the public domain. #107

Release the work to the public domain.

Release the work to the public domain. #107

Workflow file for this run

name: Static checks
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Run black and flake8
run: |
pip install --upgrade black flake8 mypy
black src/fio_planet/ tests/
flake8
mypy