Skip to content

Commit

Permalink
try strategy again for multiple platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
sgraham committed Oct 18, 2023
1 parent c8c5f75 commit 306717f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ on:

jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
style: [d, r, a]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: ./m d test
- run: ./m ${{style}} test

0 comments on commit 306717f

Please sign in to comment.