Skip to content

Bump actions/checkout from 4 to 5 #70

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #70

Workflow file for this run

name: Python check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_package:
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python_version: ["3.11"]
steps:
- uses: actions/checkout@v5
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r src/requirements-dev.txt
- name: Lint with ruff
run: ruff check . --config src/pyproject.toml
- name: Check formatting with black
run: black . --check --verbose --config src/pyproject.toml
- name: Run Pytest tests
run: python3 -m pytest