Added description to the header #73
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 | |
# Run on pull requests and on the master branch itself. | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
ln -s docker-compose.development.yml docker-compose.override.yml | |
docker compose build | |
- name: Test | |
run: docker compose run --rm web make test | |
- name: Add coverage comment for better visibility | |
uses: coroo/[email protected] | |
with: | |
pytest-coverage: trs/pytest-coverage.txt |