We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e72f7 commit 9b2de48Copy full SHA for 9b2de48
1 file changed
.github/workflows/test.yml
@@ -29,6 +29,19 @@ 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: Run cargo build (debug)
38
+ run: cargo build --all-targets
39
+ - name: Run cargo build (release)
40
+ run: cargo build --all-targets --release
41
+ - name: Build for WASM (debug)
42
+ run: ./build.sh debug
43
+ - name: Build for WASM (release)
44
+ run: ./build.sh release
45
test:
46
name: Test
47
runs-on: ubuntu-latest
0 commit comments