We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6de973b commit 08828d1Copy full SHA for 08828d1
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: windows-latest
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Install Rust
17
+ uses: actions-rs/toolchain@v1
18
+ with:
19
+ toolchain: stable
20
+ override: true
21
22
+ - name: Build release
23
+ run: cargo build --release
24
25
+ - name: Upload release executable
26
+ uses: actions/upload-artifact@v4
27
28
+ name: windbgmsg-exe
29
+ path: target/release/windbgmsg.exe
0 commit comments