Skip to content

Commit

Permalink
style: use uniform matrix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 committed Nov 10, 2024
1 parent 3351edf commit 737f605
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 13 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/infer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ jobs:
strategy:
fail-fast: false
matrix:
compiler: [clang++, g++]
build_type: [Release, Debug]
compiler:
- g++
- clang++
build_type:
- Release
- Debug

steps:
- name: Checkout
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/macos_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,14 @@ jobs:
strategy:
fail-fast: false
matrix:
compiler: [g++, clang++]
os: [macos-14]
build_type: [Release, Debug]
os:
- macos-14
compiler:
- g++
- clang++
build_type:
- Release
- Debug

steps:
- name: Checkout
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,15 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
compiler: [clang++]
clang_tidy: [clang-tidy]
build_type: [Release, Debug]
os:
- ubuntu-24.04
compiler:
- clang++
clang_tidy:
- clang-tidy
build_type:
- Release
- Debug

steps:
- name: Checkout
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/ubuntu_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
os:
- ubuntu-24.04
compiler:
- g++
- clang++
build_type: [Release, Debug]
build_type:
- Release
- Debug

steps:
- name: Checkout
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-2019, windows-2022]
build_type: [Release, Debug]
os:
- windows-2019
- windows-2022
build_type:
- Release
- Debug

steps:
- name: Checkout
Expand Down

0 comments on commit 737f605

Please sign in to comment.