We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 078a333 + 1777537 commit 98f1fcbCopy full SHA for 98f1fcb
1 file changed
.github/workflows/c-cpp.yml
@@ -0,0 +1,29 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: windows-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
17
+ - name: Cmake
18
+ run: |
19
+ mkdir build
20
+ cd build
21
+ cmake ..
22
+ cmake --build . --config Release
23
24
+ - uses: actions/upload-artifact@v3
25
+ with:
26
+ name: release
27
+ path: build/Release/
28
29
0 commit comments