Skip to content

Bump ruff from 0.5.7 to 0.6.1 #392

Bump ruff from 0.5.7 to 0.6.1

Bump ruff from 0.5.7 to 0.6.1 #392

Workflow file for this run

# SPDX-License-Identifier: MIT
name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: pytest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies & setup project
run: make install
- name: Run the tests
run: make test