Skip to content

Update dependency ruff to v0.4.3 #711

Update dependency ruff to v0.4.3

Update dependency ruff to v0.4.3 #711

Workflow file for this run

name: Main
on:
pull_request:
push:
branches:
- master
jobs:
main:
strategy:
fail-fast: true
matrix:
os: [ubuntu-22.04, macos-12]
python: ['3.10.11', '3.11.3']
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Project checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Setup Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
with:
python-version: ${{ matrix.python }}
- name: Install Poetry
uses: snok/install-poetry@93ada01c735cc8a383ce0ce2ae205a21c415379b # v1.3
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: make setup
- name: Check codestyle
run: make inspect
- name: Run tests
run: make test
- name: Build Package
run: make build