Skip to content

Commit

Permalink
Attempt CI multi-dimensional env testing
Browse files Browse the repository at this point in the history
  • Loading branch information
schivmeister committed Oct 30, 2023
1 parent d6ae5bb commit 0a959b7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.11]
os: [ ubuntu-latest ]
python-version: ['3.8', '3.11']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']

steps:
- name: Check out
Expand All @@ -28,6 +28,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Set up Windows tooling
if: matrix.os == 'windows-latest'
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install make

- name: Run required services (Fuseki)
run: |
make fuseki-create-test-dbs
Expand Down

0 comments on commit 0a959b7

Please sign in to comment.