Query stake weight #142
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: Build and Test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
starcoin-build-and-test: | |
name: Starcoin build and test | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: checkout-move | |
uses: actions/checkout@v3 | |
- name: setup environment | |
run: | | |
bash scripts/dev_setup.sh -b -t -p | |
- name: starcoin unittest | |
run: | | |
source "$HOME/.profile" | |
mpm package test | |
- name: starcoin integration test | |
run: | | |
source "$HOME/.profile" | |
mpm integration-test | |
- name: build | |
run: | | |
source "$HOME/.profile" | |
mpm package build | |
- name: check changed files | |
run: bash ./scripts/changed_files.sh |