Skip to content

Merge pull request #40 from planetlabs/unlicense #108

Merge pull request #40 from planetlabs/unlicense

Merge pull request #40 from planetlabs/unlicense #108

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