[WiP] Merger #1138
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: Build and test | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
pull_request: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Docker container | |
run: | | |
docker build \ | |
--no-cache \ | |
--progress plain \ | |
--tag fetch_cosmos_wasmd:$GITHUB_SHA \ | |
--file ./ci.Dockerfile \ | |
./ | |
- name: Run make test | |
run: | | |
docker run --rm fetch_cosmos_wasmd:$GITHUB_SHA \ | |
make test |