chore: gzip wasm #117
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: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
filter: | |
runs-on: ubuntu-latest | |
outputs: | |
filter: ${{ steps.filter.outputs.backend == 'true' || steps.filter.outputs.workflows == 'true' }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: .github/filters.yml | |
test: | |
name: Run built-in tests | |
needs: filter | |
if: ${{ needs.filter.outputs.filter == 'true' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
node-version: ['12.x'] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
./target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install dfx | |
uses: dfinity/setup-dfx@main | |
with: | |
dfx-version: "0.9.2" | |
- name: Install Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run tests | |
run: | | |
dfx start --background | |
dfx canister create wallet | |
dfx build wallet | |
cargo test --verbose --no-fail-fast --workspace --all-targets --locked -- --nocapture | |
env: | |
RUST_BACKTRACE: 1 | |
aggregate: | |
name: test:required | |
needs: [test, filter] | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
steps: | |
- name: Check test result | |
if: ${{ needs.test.result != 'success' && needs.filter.outputs.filter == 'true' }} | |
run: exit 1 |