Separa step de build e test no GA #4
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: CI | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build containers | |
run: docker-compose up -d | |
- name: Run tests | |
run: docker-compose exec -it web bash -c "./vendor/bin/phpunit" | |