We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89f6172 commit 6a93825Copy full SHA for 6a93825
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,17 @@
1
+name: cppbase-cross-platform-build
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ build:
6
+ name: ${{ matrix.os }} build
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest, windows-latest, macos-latest]
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Configure CMake
15
+ run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
16
+ - name: Build
17
+ run: cmake --build ${{github.workspace}}/build --config Release --parallel 4
0 commit comments