Merge pull request #414 from Heaven-Tonight/update-account-form-hotfix #261
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: On Push | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: | | |
make install | |
- name: Run lint | |
run: | | |
make lint | |
- name: Run tests | |
run: | | |
make test |