Skip to content

Commit 3cbad5b

Browse files
committed
ci: add CI workflow using rust-proxy/workflows
1 parent c2a4a79 commit 3cbad5b

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

.github/target.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Wind CI Build Target Configuration
2+
3+
[[target]]
4+
os = "ubuntu-latest"
5+
target = "x86_64-unknown-linux-gnu"
6+
release-name = "x86_64-linux"
7+
skip-test = false
8+
9+
[[target]]
10+
os = "macos-latest"
11+
target = "aarch64-apple-darwin"
12+
release-name = "aarch64-darwin"
13+
skip-test = false

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
uses: rust-proxy/workflows/.github/workflows/rust-build.yml@main
14+
with:
15+
packages: "wind"
16+
run-tests: true
17+
only-clippy-tests-on-pr: true

0 commit comments

Comments
 (0)