Skip to content

Commit

Permalink
Running unit tests on a full grid (#158)
Browse files Browse the repository at this point in the history
This might be over-doing it. We'll see. For now, it is a test.
  • Loading branch information
john-science authored Nov 20, 2024
1 parent 1a44fe4 commit 7961443
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/unittests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,20 @@ permissions:

on:
push:
branches:
- main
paths-ignore:
- 'doc/**'
pull_request:
paths-ignore:
- 'doc/**'

jobs:
build:

runs-on: ubuntu-24.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
# BEHOLD, our test grid!
os: [ubuntu-24.04, windows-2022, macos-14]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
Expand All @@ -23,8 +27,6 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Update package index
run: sudo apt-get update
- name: Install PIP Packages
run: |
pip install -e .
Expand Down

0 comments on commit 7961443

Please sign in to comment.