Skip to content

Update dependency ruff to ^0.8.5 #1017

Update dependency ruff to ^0.8.5

Update dependency ruff to ^0.8.5 #1017

Workflow file for this run

---
name: Unit Tests
"on":
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit_test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/[email protected]
- name: Run unit tests
run: make unit-tests