We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cdddbf commit c1c660cCopy full SHA for c1c660c
.github/workflows/cmake.yml renamed to .github/workflows/release.yml
@@ -1,4 +1,4 @@
1
-name: CMake
+name: Release
2
3
on:
4
push:
@@ -11,16 +11,14 @@ env:
11
12
jobs:
13
build:
14
- runs-on: macos-latest
+ strategy:
15
+ matrix:
16
+ os: [ macos-14, ubuntu-latest, windows-latest ]
17
- steps:
- - uses: actions/checkout@v3
18
+ runs-on: ${{ matrix.os }}
19
- - name: Install GitHub CLI
20
- run: |
21
- brew install llvm
22
- ln -s "$(brew --prefix llvm)/bin/clang-format" "/usr/local/bin/clang-format"
23
- ln -s "$(brew --prefix llvm)/bin/clang-tidy" "/usr/local/bin/clang-tidy"
+ steps:
+ - uses: actions/checkout@v4
24
25
- name: Configure CMake
26
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
0 commit comments