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.
2 parents 5cdf7a6 + 4389148 commit e86df0dCopy full SHA for e86df0d
.github/workflows/xmake.yml
@@ -0,0 +1,28 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: windows-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ submodules: recursive
18
+ - uses: xmake-io/github-action-setup-xmake@v1
19
20
+ xmake-version: latest
21
+ actions-cache-folder: '.xmake-cache'
22
+ actions-cache-key: 'ci'
23
+ - name: build
24
+ run: xmake -y --verbose
25
+ - name: Upload a Build Artifact
26
+ uses: actions/[email protected]
27
28
+ path: ./build/windows/
0 commit comments