bump up finschia v2.0.1 into main #42
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-contracts | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
tests-contracts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker/setup-buildx-action@v3 | |
- name: Check out to finschia-wasm | |
uses: actions/checkout@v4 | |
with: | |
repository: Finschia/finschia-wasm | |
- name: Build contract | |
run: | | |
docker run --rm -v "$(pwd)":/code \ | |
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/examples/target \ | |
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \ | |
cosmwasm/rust-optimizer:0.12.13 ./examples | |
- name: CI test | |
run: | | |
bash -xe ./integration_test_contracts_with_docker.sh | |
working-directory: scripts |