We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9608be4 + 3f61761 commit c7033ccCopy full SHA for c7033cc
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: CMake
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+env:
8
+ # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
9
+ BUILD_TYPE: Release
10
11
+jobs:
12
+ build:
13
+ # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
14
+ # You can convert this to a matrix build if you need cross-platform coverage.
15
+ # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - uses: actions/checkout@v3
20
21
+ - name: Build
22
+ # Build your program with the given configuration
23
+ run: make
0 commit comments