Move non-consensus data types to stdlib; better separate commitments and logic validation #813
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- 'v[0-9]+.[0-9]+' | |
pull_request: | |
branches: | |
- master | |
- develop | |
- 'v[0-9]+.[0-9]+' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@V27 | |
- name: Build & test | |
run: nix develop .#stable -c cargo test --workspace --all-features --no-fail-fast | |
wasm-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@V27 | |
- name: Test in headless Chrome | |
run: nix develop .#wasm -c wasm-pack test --headless --chrome |