fix(gno/dao): add GetMembersJSON to voting module interface & retrieve it from UI #2113
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: Rust | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
rust: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: wasm32-unknown-unknown | |
- name: Format | |
run: make fmt.rust | |
- name: Lint | |
run: make lint.rust | |
- name: Test | |
run: make test.rust | |
- name: Build | |
run: make build.rust | |
- 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 |