Skip to content

Commit 711b463

Browse files
committed
Create c-cpp.yml
1 parent 6ad92f3 commit 711b463

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/c-cpp.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: C/C++ CI
2+
3+
on:
4+
workflow_dispatch
5+
6+
jobs:
7+
build:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: build
14+
run: g++ -std=c++2a ./Header_File_constructor.cpp
15+
- name: Upload a Build Artifact
16+
uses: actions/[email protected]
17+
with:
18+
path: ./a.out

0 commit comments

Comments
 (0)