Skip to content
This repository was archived by the owner on Mar 6, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ on: [ push, pull_request ]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
os: [ubuntu, macos, windows]
python-version: [ 3.6, 3.7, 3.8, 3.9, pypy-3.7 ]
exclude:
- os: windows
python-version: pypy-3.7

steps:
- uses: actions/checkout@v2
Expand All @@ -21,4 +25,4 @@ jobs:
run: pip install .

- name: Unit tests
run: python tests/nest_test.py
run: python tests/nest_test.py