Skip to content

Initial files & build system. #2

Initial files & build system.

Initial files & build system. #2

Workflow file for this run

name: tests
on:
push:
branches: [ "main", "dev" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- build_arch: x64
python_arch: x64
spec: nogil-3.9
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: colesbury/setup-python@nogil
with:
python-version: ${{ matrix.python-version }}
- name: Check nogil
run: |
python -c "import sys; print(sys.flags.nogil);"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Test with pytest
run: |
pytest