fix(dao): proposals list invalidation #683
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: Gno Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
go: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "1.22" | |
- name: Clean gno | |
run: make clean-gno | |
- name: Clone gno | |
run: make clone-gno | |
- name: Build GnoVM | |
run: make build-gno | |
- name: Lint gno | |
run: make lint-gno | |
- name: gno mod tidy | |
run: make gno-mod-tidy | |
- name: Check that there is no diff | |
run: | | |
mrdiff=$(git status --porcelain) | |
if [[ $mrdiff ]]; then | |
echo 'ERROR: Diff found!' | |
echo $mrdiff | |
git diff | |
exit 1 | |
fi |