[Astra] rename cleanup : make sure the tests are passing[Rust unit and integration tests] #30
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 | |
pull_request: | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
- name: Build | |
env: | |
IS_GITHUB_ACTION: true | |
run: sh build.sh | |
- name: Run Cargo tests | |
env: | |
IS_GITHUB_ACTION: true | |
run: cargo test --workspace -- --nocapture |