CI: Support Windows when Testing using Docker #59
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
- LICENCE | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test-build: | |
strategy: | |
matrix: | |
# os: [ubuntu-latest, windows-latest] | |
# Currently Github Action does not support `arm*` architecture on default runners. | |
# Check here for details: https://github.com/orgs/community/discussions/25319#discussioncomment-3247468 | |
# arch: ["386", "amd64"] | |
# debug | |
os: [windows-latest] | |
arch: ["amd64"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Run Tests Linux | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: make test | |
- name: Run Tests Windows | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: make test-windows |