Skip to content

Commit

Permalink
Test examples using one python version
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Mar 27, 2024
1 parent 8416287 commit ebc43a3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@ jobs:
- run: make dev
- run: make test

examples:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
- run: make dev
- run: make exampletest

format:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit ebc43a3

Please sign in to comment.