We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2a4a79 commit 3cbad5bCopy full SHA for 3cbad5b
2 files changed
.github/target.toml
@@ -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
10
+os = "macos-latest"
11
+target = "aarch64-apple-darwin"
12
+release-name = "aarch64-darwin"
13
.github/workflows/ci.yml
@@ -0,0 +1,17 @@
+name: CI
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+jobs:
+ build:
+ 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