Skip to content

Commit 98f1fcb

Browse files
committed
Merge branch 'master' of github.com:EKibort/RZ09
2 parents 078a333 + 1777537 commit 98f1fcb

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: C/C++ CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
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

Comments
 (0)