Pypi cleanup #76
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build for (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
python-version: ['3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Python info | |
shell: bash -e {0} | |
run: | | |
which python | |
python --version | |
- name: Upgrade pip and install dependencies | |
run: | | |
python -m pip install --upgrade pip poetry | |
poetry install | |
- name: Run unit tests | |
run: poetry run pytest | |
- name: Verify that we can build the package | |
run: poetry build | |
lint: | |
name: Linting build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Python info | |
shell: bash -e {0} | |
run: | | |
which python | |
python --version | |
- name: Upgrade pip and install dependencies | |
run: | | |
python -m pip install --upgrade pip poetry | |
poetry install --with dev | |
- name: Check style against standards using ruff | |
run: poetry run ruff check . |