Fix up new migration #84
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: Test | |
on: | |
push: | |
jobs: | |
docker: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# | |
# - name: Cache go mods | |
# uses: actions/cache@v3 | |
# with: | |
# path: | | |
# ~/.cache/go-build | |
# ~/go/pkg/mod | |
# key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
- name: Pull containers | |
run: docker-compose -f "docker-compose.yml" pull | |
- name: Start containers | |
run: docker-compose -f "docker-compose.yml" up -d --build | |
- name: Run ps | |
run: docker-compose -f "docker-compose.yml" ps | |
- name: Run logs | |
run: docker-compose -f "docker-compose.yml" logs | |
- name: Run lint | |
run: docker-compose -f "docker-compose.yml" exec -T app make lint | |
- name: Run unit tests | |
run: docker-compose -f "docker-compose.yml" exec -T app make test-unit | |
- name: Sleep for 10 seconds | |
uses: jakejarvis/wait-action@master | |
with: | |
time: '10s' | |
- name: Run integration tests | |
run: docker-compose -f "docker-compose.yml" exec -T app make test-integration | |
# - name: Publish Test Report | |
# uses: mikepenz/action-junit-report@v4 | |
# if: success() || failure() | |
# with: | |
# report_paths: '**/.report/*.xml' | |
# - name: Test & publish code coverage | |
# uses: paambaati/[email protected] | |
# with: | |
# coverageLocations: | | |
# ${{github.workspace}}/.report/*.json:cobertura | |
- name: Stop containers | |
if: always() | |
run: docker-compose -f "docker-compose.yml" down |