Skip to content

remove manual trigger #95

remove manual trigger

remove manual trigger #95

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch: # allow manual triggering
jobs:
test:
runs-on: ubuntu-latest
name: Build and test
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: |
pip install -U pip setuptools wheel
pip install -r requirements-dev.txt
- name: Test with pytest
run: python -m pytest tests/test_nojit.py tests/test_jit.py