chore(main): release 1.9.0 #70
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
# Runs lint, style (black) and type checks | |
name: Style | |
on: | |
pull_request: | |
push: | |
branches: ['main'] | |
jobs: | |
test: | |
name: Run linting, style and type checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
pip install poetry | |
poetry install | |
- name: Check formatting | |
run: poetry run ruff format atmos_validation --check | |
- name: Check linting | |
run: poetry run ruff check atmos_validation | |
- name: Static type checking | |
run: poetry run pyright atmos_validation |