Skip to content

refactor: removed bdist_wheel config #56

refactor: removed bdist_wheel config

refactor: removed bdist_wheel config #56

Workflow file for this run

name: ci
on: [ push, pull_request ]
jobs:
tests:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu]
fail-fast: true
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: actions/cache@v2
with:
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
path: ~/.cache/pip
restore-keys: |
${{ runner.os }}-pip-
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v2
with:
path: "./requirements-dev.txt"
- name: Run lint & tests
run: |
make build USE_CYTHON=1
make ci SKIP_STYLE=true
- name: Run pytest benchmark
run: pytest benchmark/test_pybmoore.py