Skip to content

Commit

Permalink
Merge pull request #374 from thomaspinder/test-workflow
Browse files Browse the repository at this point in the history
Add testing workflow
  • Loading branch information
slinderman authored Jan 27, 2025
2 parents d586ce5 + 533ccfe commit 7ce8427
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,21 @@ on:

jobs:
Workflow:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Select the Python versions to test against
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.10", "3.11", "3.12"]
name: ${{ matrix.os }} with Python ${{ matrix.python-version }}
steps:
- name: Clone the reference repository
uses: actions/checkout@v2
uses: actions/checkout@v3.5.2

- name: Set up Python 3.10.6
uses: actions/setup-python@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.10.6'
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit 7ce8427

Please sign in to comment.