From 63d89bed94bf0cbda10393e6b1c66bb8bb686e0e Mon Sep 17 00:00:00 2001 From: Toshit Chawda Date: Wed, 12 Jun 2024 13:43:37 -0700 Subject: [PATCH] remove workflows --- .github/workflows/test_client.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/test_client.yml diff --git a/.github/workflows/test_client.yml b/.github/workflows/test_client.yml deleted file mode 100644 index 7ddffc8..0000000 --- a/.github/workflows/test_client.yml +++ /dev/null @@ -1,27 +0,0 @@ -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: Install wasm-bindgen-cli - run: cargo install wasm-bindgen-cli - - name: Test - run: bash -c "cd client; exec bash test.sh"