Skip to content

bump wasmvn to v1.2.5, hot fix bugs https://github.com/CosmWasm/advis… #272

bump wasmvn to v1.2.5, hot fix bugs https://github.com/CosmWasm/advis…

bump wasmvn to v1.2.5, hot fix bugs https://github.com/CosmWasm/advis… #272

Workflow file for this run

---
on: [push, pull_request]
name: Build
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
name: build
steps:
- uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.20.0
- run: go build ./...
tidy:
runs-on: ubuntu-latest
name: tidy
steps:
- uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.20.0
- run: |
go mod tidy
CHANGES_IN_REPO=$(git status --porcelain)
if [[ -n "$CHANGES_IN_REPO" ]]; then
echo "Repository is dirty. Showing 'git status' and 'git --no-pager diff' for debugging now:"
git status && git --no-pager diff
exit 1
fi