forked from starknet-io/types-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 905 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
on: [push, pull_request]
name: Test
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install toolchain
run: rustup show
- name: Run cargo fmt
run: cargo fmt -- --check
- name: Run cargo clippy
run: cargo clippy --all-features -- -D warnings
- name: Run cargo clippy alloc
run: >
cargo clippy --no-default-features --features alloc,serde -- -D warnings
- name: Run cargo test
run: cargo test --all-features
- name: Run cargo test alloc
run: cargo test --no-default-features --features alloc,serde
no-std-build:
name: Test no_std support
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check wasm compatibility
run: |-
cd ensure_no_std
rustup show
cargo build -r