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.
1 parent a35b018 commit c1247d7Copy full SHA for c1247d7
.github/workflows/ci.yml renamed to .github/workflows/contract.yml
@@ -1,4 +1,4 @@
1
-name: Contract Development
+name: Contract
2
3
# Pushes to long living branches and all PRs
4
on:
.github/workflows/workspace.yml
@@ -0,0 +1,25 @@
+name: Workspace
+
+# Check workspace build on merge commit of all PRs.
+# Branches are checked better by CircleCI.
5
+on:
6
+ pull_request:
7
8
+env:
9
+ RUST_BACKTRACE: 1
10
11
+jobs:
12
+ check-workspace:
13
+ name: Check workspace
14
+ runs-on: ubuntu-24.04
15
+ steps:
16
+ - name: Checkout sources
17
+ uses: actions/checkout@v4
18
+ - name: Install Rust
19
+ uses: dtolnay/rust-toolchain@master
20
+ with:
21
+ toolchain: 1.73.0
22
+ targets: wasm32-unknown-unknown
23
+ components: clippy, rustfmt
24
+ - name: Check workspace
25
+ run: ./devtools/check_workspace.sh
0 commit comments