Skip to content

Merge branch 'main' into github-action #15

Merge branch 'main' into github-action

Merge branch 'main' into github-action #15

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: ["main", "github-action"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pdm install && pip install ruff pytest
- name: Lint with ruff
run: |
ruff check .
- name: Run Tests
run: |
pdm run -v pytest