Skip to content

Bump ruff from 0.5.0 to 0.5.7 #42

Bump ruff from 0.5.0 to 0.5.7

Bump ruff from 0.5.0 to 0.5.7 #42

Workflow file for this run

name: CI
on:
push:
branches:
- master
- release
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint:
name: Lint with ruff
runs-on: [ self-hosted, small ]
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/prepare
- name: Check files using the ruff formatter
run: poetry run ruff --fix --unsafe-fixes --preview .
mypy:
name: Static Type Checking
runs-on: [ self-hosted, small ]
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/prepare
- name: Mypy
run: poetry run mypy .
test:
name: Run unit test on ${{ matrix.os }} with Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- [ self-hosted, small ]
- windows-latest
- macos-latest
python-version: [ "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==$(head -n 1 .poetry-version)
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-interaction --no-ansi --no-root --sync
- name: Run unittests
run: python tests/testing.py