Skip to content

Initial files & build system. #4

Initial files & build system.

Initial files & build system. #4

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:
python-version: ["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