We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e72f7 commit ea7f02dCopy full SHA for ea7f02d
1 file changed
.github/workflows/test.yml
@@ -29,6 +29,21 @@ jobs:
29
run: cargo doc --all-features --no-deps
30
env:
31
RUSTDOCFLAGS: --cfg docsrs
32
+ build:
33
+ name: Build
34
+ runs-on: ubuntu-latest
35
+ steps:
36
+ - uses: actions/checkout@v3
37
+ - name: Install wasm-pack
38
+ run: cargo install wasm-pack
39
+ - name: Run cargo build (debug)
40
+ run: cargo build --all-targets
41
+ - name: Run cargo build (release)
42
+ run: cargo build --all-targets --release
43
+ - name: Build for WASM (debug)
44
+ run: ./build.sh debug
45
+ - name: Build for WASM (release)
46
+ run: ./build.sh release
47
test:
48
name: Test
49
runs-on: ubuntu-latest
0 commit comments