Getting feed repo working, shameless green, for mwarin #320
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: Run CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
# Run tests | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build docker image | |
run: docker compose --file docker-compose.test.yml build | |
- name: Run tests | |
run: docker compose --file docker-compose.test.yml run sut | |
env: | |
GITHUB_TOKEN: ${{ secrets.github_token }} |