Skip to content

Bump ruff from 0.6.6 to 0.7.4 #211

Bump ruff from 0.6.6 to 0.7.4

Bump ruff from 0.6.6 to 0.7.4 #211

Workflow file for this run

name: Staged CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Run Composite Action to Install Packages
uses: ./.github/actions
- name: Run tests
run: make test
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Run Composite Action to Install Packages
uses: ./.github/actions
- name: Run Pre-commit
run: |
if [ -f "poetry.lock" ]; then echo "running poetry lock" && poetry lock --no-update; fi;
poetry install --no-root --all-extras
poetry run pre-commit run --all-files;