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 109f434 commit f5e89feCopy full SHA for f5e89fe
.github/workflows/wasm.yml
@@ -0,0 +1,31 @@
1
+name: WASM
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ tags-ignore: [ '*' ]
7
+ paths:
8
+ - '.github/**'
9
+ - 'git-pack/**'
10
+ - '*.toml'
11
+ pull_request:
12
13
14
15
16
17
18
+jobs:
19
+ compile-to-wasm:
20
+ runs-on: ubuntu-latest
21
+ continue-on-error: true
22
+ steps:
23
+ - uses: actions/checkout@v3
24
+ - uses: actions-rs/toolchain@v1
25
+ with:
26
+ toolchain: stable
27
+ target: wasm32-unknown-unknown
28
+ override: true
29
+ profile: minimal
30
+ - uses: Swatinem/rust-cache@v2
31
+ - run: cargo check -p git-pack --target wasm32-unknown-unknown
0 commit comments