fix edit profile #1203
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: Unit tests, static analysis, code style | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
checkPr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run container | |
run: make pantheon_run | |
- name: Install project deps | |
run: make deps | |
- name: Apply db migrations | |
run: make migrate | |
- name: Run all code checks | |
run: make lint | |
- name: Run all unit tests | |
run: make test | |
- name: Stop containers | |
if: always() | |
run: make pantheon_stop | |