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 9870975 commit 2bd5044Copy full SHA for 2bd5044
.github/workflows/rust.yml
@@ -0,0 +1,36 @@
1
+name: Rust
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ build:
14
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
20
+ - name: Build
21
+ run: cargo build --locked
22
23
+ - name: Run tests
24
+ run: cargo test --locked
25
26
+ - name: Polkadot Runtimes Work
27
+ run: |
28
+ cargo install --path . --locked
29
+ git clone --depth 1 --branch main https://github.com/polkadot-fellows/runtimes
30
+ cd runtimes
31
32
+ # Some testing
33
+ psvm -v stable2407
34
+ psvm -v stable2407-2
35
+ psvm -v 1.13.0
36
+ psvm -l
0 commit comments