From 691ac15f3c7a7c95d5b65981e3a01924d55824e9 Mon Sep 17 00:00:00 2001 From: Toshit <45221816+r58Playz@users.noreply.github.com> Date: Sat, 23 Mar 2024 10:14:19 -0700 Subject: [PATCH] CI client tests --- .github/workflows/test_client.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test_client.yml diff --git a/.github/workflows/test_client.yml b/.github/workflows/test_client.yml new file mode 100644 index 0000000..8d402db --- /dev/null +++ b/.github/workflows/test_client.yml @@ -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"