Skip to content

feat: Add method SetPayoutAddress to governance contract #4804

feat: Add method SetPayoutAddress to governance contract

feat: Add method SetPayoutAddress to governance contract #4804

Workflow file for this run

name: Test
on:
pull_request:
branches: [develop]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: "1.20"
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
make wasm
go get -v -t -d ./...
- name: Build
run: make build
- name: Test
run: make test-short
contract-test:
name: Wasm contract tests
runs-on: ubuntu-latest
strategy:
matrix:
TEST_LANG: [go, rswasm]
steps:
- name: checkout to the directory
uses: actions/checkout@v3
- name: install golang
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: install rust-toolchain
uses: actions-rs/[email protected]
with:
toolchain: stable
- name: install wasm-pack
run: |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: install schema
run: |
root_path=$(git rev-parse --show-toplevel)
go install $root_path/tools/schema
schema -go
- name: run builds
env:
TEST_LANG: ${{matrix.TEST_LANG}}
run: |
cd contracts/wasm/scripts
bash core_build.sh
if [ $TEST_LANG == "rswasm" ]; then
bash rust_all.sh ci
fi
- name: run tests
env:
TEST_LANG: ${{matrix.TEST_LANG}}
run: |
cd contracts/wasm
if [ $TEST_LANG == "go" ]; then
go test ./...
elif [ $TEST_LANG == "rswasm" ]; then
go test ./... -rswasm
fi
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.20"
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
# - name: Generate SC files
# run: |
# cd contracts/wasm/scripts
# bash schema_all.sh
# - name: golangci-lint in SC
# uses: golangci/golangci-lint-action@v3
# with:
# working-directory: contracts/wasm
# args: --fix --timeout 5m0s --path-prefix=""
# skip-pkg-cache: true
- name: Run global scope golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53.2
args: --timeout 15m0s
skip-pkg-cache: true
- name: Run golangci-lint on wasp-cli
uses: golangci/golangci-lint-action@v3
with:
working-directory: tools/wasp-cli
version: v1.53.2
args: --timeout 15m0s
skip-pkg-cache: true