We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69b4b8a commit dcc844bCopy full SHA for dcc844b
.github/workflows/c-cpp.yml
@@ -2,9 +2,21 @@ name: Build ArKr
2
3
on:
4
push:
5
- branches: [ "main" ]
+ branches:
6
+ - main
7
+ paths:
8
+ - '**/*.cpp'
9
+ - '**/*.hpp'
10
+ - '**/*.c'
11
+ - '**/*.h'
12
pull_request:
13
14
15
16
17
18
19
20
21
jobs:
22
build:
@@ -13,5 +25,10 @@ jobs:
25
26
steps:
27
- uses: actions/checkout@v4
- - name: make
28
+ - name: Compile ArKr
29
run: g++ ./arkr.cpp -o arkr
30
+ - name: Upload ArKr binary
31
+ uses: actions/upload-artifact@v3
32
+ with:
33
+ name: arkr-binary
34
+ path: ./arkr
0 commit comments