CI client tests

This commit is contained in:
Toshit 2024-03-23 10:14:19 -07:00 committed by GitHub
parent a14b54d725
commit 691ac15f3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

25
.github/workflows/test_client.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Rust
on:
push:
branches: [ "multiplexed" ]
pull_request:
branches: [ "multiplexed" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
targets: wasm32-unknown-unknown
components: rust-src
- name: Test
- run: bash -c "cd client; exec bash test.sh"