Skip to content

Remove no longer supported ruff option #510

Remove no longer supported ruff option

Remove no longer supported ruff option #510

Workflow file for this run

name: test_python
on:
pull_request:
branches: [master]
push:
branches: [master]
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- run: pip install ruff
- run: ruff .
test_python:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest] # , macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Run Python unit tests
run: pytest
- name: Mypy type checking
run: mypy --ignore-missing-imports --install-types --non-interactive .