Skip to content

Commit

Permalink
Merge pull request #158 from vil02/use_unoform_matrix_syntax
Browse files Browse the repository at this point in the history
style: use uniform matrix syntax
  • Loading branch information
vil02 authored Nov 10, 2024
2 parents 3351edf + 737f605 commit 35652e9
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 35652e9

Please sign in to comment.