Skip to content

Commit

Permalink
fix runs-on, yamllint
Browse files Browse the repository at this point in the history
  • Loading branch information
hrantzsch committed May 20, 2024
1 parent f9d2f12 commit 2fd24d4
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@ name: Build and test

on:
push:
branches: [ master ]
branches:
- master
pull_request:
branches: [ master ]
branches:
- master
schedule:
- cron: '0 4 * * 0'

jobs:

Windows-test:
runs-on: [windows-2019, windows-2022]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, windows-2022]
config: [Debug, Release]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -51,7 +54,10 @@ jobs:
cmake --build . --target test
Unix-test-coverage:
runs-on: [ubuntu-22.04, macos-14]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-14]
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 2fd24d4

Please sign in to comment.