Skip to content

⬆️ Bump ruff from 0.5.7 to 0.6.1 #83

⬆️ Bump ruff from 0.5.7 to 0.6.1

⬆️ Bump ruff from 0.5.7 to 0.6.1 #83

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Dependencies
run: poetry install --only main,lint
- name: Lint
run: bash scripts/lint.sh