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 965ca1e commit d371f39Copy full SHA for d371f39
.github/workflows/build.yml
@@ -0,0 +1,34 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - master
5
+ pull_request:
6
7
8
+
9
+name: "Build"
10
11
+jobs:
12
+ build:
13
+ runs-on: ${{ matrix.os }}
14
+ strategy:
15
+ matrix:
16
+ os:
17
+ - ubuntu-20.04
18
+ - windows-2019
19
+ - macos-10.15
20
+ env:
21
+ ARCHIVE: 1
22
23
+ steps:
24
+ - name: "Checkout"
25
+ uses: actions/checkout@v2
26
27
+ - name: "Compile"
28
+ run: make release
29
30
+ - name: "Upload artifacts"
31
+ uses: actions/upload-artifact@v2
32
+ with:
33
+ name: ${{ runner.os }}
34
+ path: bspc*
0 commit comments