Indentation issue #59
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: Running Tests | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Docker Build Image | |
run: | | |
cd ./Django/communicado | |
chmod +x mac_docker_build_and_run.sh | |
- name: Run Django migrations | |
run: | | |
cd ./Django/communicado | |
docker exec communicado-web-1 python manage.py makemigrations | |
docker exec communicado-web-1 python manage.py migrate || true | |
- name: Run Tests | |
run: | | |
cd ./Django/communicado | |
docker exec communicado-web-1 python manage.py test |