Skip to content

version bump to v0.8.2 #42

version bump to v0.8.2

version bump to v0.8.2 #42

name: Install and run ruff
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
# This is the version of the action for setting up Python, not the Python version.
uses: actions/setup-python@v5
with:
python-version: '3.11'
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install project and dev dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev,all]"
- name: Lint code with Ruff
run: ruff check --output-format=github --target-version=py311
- name: Check code formatting with Ruff
run: ruff format --diff --target-version=py311
continue-on-error: true