Skip to content

chore(deps): update psf/black action to v25 (#113) #276

chore(deps): update psf/black action to v25 (#113)

chore(deps): update psf/black action to v25 (#113) #276

Workflow file for this run

---
name: python_test
'on':
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
python_test:
runs-on: ${{matrix.os}}
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
python-version: [3.12, 3.13]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install --with dev
- name: Run liter
run: |
./check_all_python_files.sh
- name: Test with pytest
run: |
poetry run pytest -n 2
...