test: Test cumulative stake/fees funcs from LIP36 #462
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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- delta | |
- confluence | |
- streamflow | |
- next | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
# Needed for commands that depend on git tags | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
yarn | |
- name: Linter | |
run: | | |
yarn lint | |
- name: Compile contracts | |
run: | | |
yarn compile | |
- name: 💡 Run contract tests with coverage reporting | |
run: | | |
yarn test:coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |