Skip to content

Merge next-release for 0.2.0 (#8) #12

Merge next-release for 0.2.0 (#8)

Merge next-release for 0.2.0 (#8) #12

Workflow file for this run

name: test-glmpy
on:
push:
branches: main
pull_request:
branches: main
jobs:
test-glmpy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install pip --upgrade
python -m pip install -r requirements.txt
python -m pip install pytest
- name: Test with pytest
run: |
pytest