Skip to content

Bump setuptools from 69.0.3 to 70.0.0 #33

Bump setuptools from 69.0.3 to 70.0.0

Bump setuptools from 69.0.3 to 70.0.0 #33

Workflow file for this run

name: pytest
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
workflow_call:
permissions:
contents: read
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-latest
- macos-14
python-ver:
- 3.11
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-ver }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-ver }}
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install
- name: Build cython code
run: pushd src/cis_decoder/; poetry run python setup.py build_ext --inplace; popd;
- name: Ruff linting
run: poetry run ruff src/
- name: Test with pytest
run: poetry run pytest