Fix/CI permissions (#79) #6
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: babylonchain/babylon-contract/wasm-tests | |
on: | |
push: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
WORKSPACE: "/home/runner/work/babylon-contract/babylon-contract" | |
jobs: | |
wasm-build-check-integration-full: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Build optimised Wasm binaries | |
run: "./scripts/optimizer.sh" | |
- name: List optimised Wasm binaries | |
run: bash -c "ls $WORKSPACE/artifacts/*.wasm" | |
- name: Install cosmwasm-check | |
run: cargo install --locked --debug --version ^2.0 cosmwasm-check | |
- name: Check the Wasm binaries' validity | |
run: bash -c "cosmwasm-check $WORKSPACE/artifacts/*.wasm" | |
- name: Integration tests based on CosmWasm | |
run: cargo test --test integration | |
- uses: actions/[email protected] | |
with: | |
path: |- | |
artifacts/babylon_contract.wasm | |
artifacts/btc_staking.wasm | |
artifacts/btc_finality.wasm |