Skip to content

ci: use PyPi trusted publishing #19

ci: use PyPi trusted publishing

ci: use PyPi trusted publishing #19

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- 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: |
python3 -m pip install flake8
- name: Unit tests
run: |
python3 -m unittest -v
- name: PEP8
run: |
flake8 --max-line-length 120