Skip to content

Commit 08828d1

Browse files
committed
Create ci.yml
1 parent 6de973b commit 08828d1

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
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+
with:
28+
name: windbgmsg-exe
29+
path: target/release/windbgmsg.exe

0 commit comments

Comments
 (0)