Skip to content

Commit 2bd5044

Browse files
authored
Create CUI
1 parent 9870975 commit 2bd5044

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/rust.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
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

Comments
 (0)