Skip to content

Commit 563962d

Browse files
committed
Run cargo test in ci pipeline
1 parent 754a73e commit 563962d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,17 @@ jobs:
8181

8282
- name: Build WebGL Example
8383
run: cargo build -p render-webgl --target=wasm32-unknown-unknown
84+
85+
test:
86+
name: Run unit tests
87+
runs-on: ubuntu-latest
88+
steps:
89+
- name: Checkout
90+
uses: actions/checkout@v4
91+
92+
- uses: dtolnay/rust-toolchain@stable
93+
with:
94+
targets: wasm32-unknown-unknown
95+
96+
- name: Test Inox2D
97+
run: cargo test

0 commit comments

Comments
 (0)