We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ceb5b commit f8c5bd5Copy full SHA for f8c5bd5
.github/workflows/makefile.yml
@@ -0,0 +1,29 @@
1
+name: Makefile CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: Install dependencies
18
+ run: make deps
19
20
+ - name: Build for Linux and Windows
21
+ run: |
22
+ make build-linux
23
+ make build-windows
24
25
+ - name: Upload Binaries
26
+ uses: actions/upload-artifact@v3
27
+ with:
28
+ name: kmip-cli-binaries
29
+ path: build/
0 commit comments