Support the 100m grid #114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
Lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: python -m pip install poetry | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
cache: "poetry" | |
- name: Install dependencies | |
run: poetry install | |
- name: Check poetry.lock | |
run: poetry lock --check | |
# - name: pyright | |
# run: poetry run pyright . | |
- name: Ruff (format) | |
run: poetry run ruff format --check . | |
- name: Ruff (lint) | |
run: poetry run ruff check --output-format github . |