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 2b686f8 commit c043e27Copy full SHA for c043e27
.github/workflows/tests.yml
@@ -49,13 +49,20 @@ jobs:
49
channel: ${{ matrix.toolchain }}
50
components: |
51
clippy
52
+ targets: |
53
+ wasm32v1-none
54
cache-key-job: true
55
56
- name: Check
57
run: |
58
cargo check -p kitoken
59
cargo clippy -p kitoken
60
61
+ - name: Check (no_std)
62
+ continue-on-error: true
63
+ run: |
64
+ cargo check -p kitoken --target wasm32v1-none --no-default-features
65
+
66
- name: Test
67
continue-on-error: true
68
id: test
0 commit comments