Skip to content

Commit

Permalink
ci: run tests also on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
majori committed Nov 15, 2024
1 parent 83e1963 commit bd10cc9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@ on:
pull_request:
workflow_call:

env:
DOCKER_DEFAULT_PLATFORM: linux/amd64

jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit bd10cc9

Please sign in to comment.