Skip to content

colab fussing

colab fussing #16

Workflow file for this run

---
name: test
on: # yamllint disable-line rule:truthy
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.7', '3.11']
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: |
pip install -U pip setuptools wheel
pip install -r requirements.txt
- name: Tests
run: |
pytest tests/test_pygrin.py