Update prettier_dir. Fix flake8 warnings. #2216
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: actions | |
on: push | |
jobs: | |
# https://github.com/pre-commit/action | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- uses: pre-commit/[email protected] | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set perms | |
run: chmod -R a+rw api | |
- name: Build the stack | |
run: docker-compose --env-file ./docker-compose.env build | |
- name: Test | |
run: docker-compose --env-file ./docker-compose.env run --rm api ./run_tests.sh |