Skip to content

Commit

Permalink
Only Rust test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Carton committed Oct 12, 2022
1 parent 5e075d2 commit c45ac8f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,9 @@ jobs:
with:
cache-on-failure: true

- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

- name: Install wasm-bindgen-cli Custom
run: cargo install -f wasm-bindgen-cli
- name: Run tests
run: cargo test --verbose

- name: Run WASM tests
run: make wasm-tests
working-directory: packages/bsv-wasm

node-test:
runs-on: ubuntu-latest

Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@ env:
CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true

- name: Run tests
run: cargo test --verbose

node-test:
runs-on: ubuntu-latest

Expand Down

0 comments on commit c45ac8f

Please sign in to comment.