test1 #11
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: build-tests | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
unit-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | |
- name: Pull Latest Docker Image | |
run: docker pull brok3turtl3/codehammers:latest | |
- name: Run Docker Compose | |
run: TEST_COMMAND=test:silent docker-compose -f docker-compose-test.yml up --abort-on-container-exit |