Skip to content

CI: Support Windows when Testing using Docker #55

CI: Support Windows when Testing using Docker

CI: Support Windows when Testing using Docker #55

Workflow file for this run

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