Updated CI to test on all platform.
h3rald h3rald@h3rald.com
Sat, 07 Dec 2024 19:22:15 +0100
1 files changed,
9 insertions(+),
3 deletions(-)
jump to
M
.github/workflows/ci.yml
→
.github/workflows/ci.yml
@@ -15,8 +15,14 @@ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: # This workflow contains a single job called "ci" ci: - # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - ubuntu-latest + - macos-latest + - windows-latest + - macos-13 # Steps represent a sequence of tasks that will be executed as part of the job steps:@@ -27,4 +33,4 @@ - name: Build
run: make - name: Test - run: make test+ run: make test