Test for copy_tasks_and_summaries prior to refactor #250
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
--- | |
# yamllint disable rule:line-length | |
name: Docker | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
paths: | |
- 'server/camcops_server/**' | |
- .github/workflows/docker.yml | |
- .github/scripts/docker.sh | |
- .github/scripts/set_camcops_docker_environment | |
- 'server/docker/**' | |
- server/setup.py | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
set -eux -o pipefail | |
source ${GITHUB_WORKSPACE}/.github/scripts/set_camcops_docker_environment | |
${GITHUB_WORKSPACE}/.github/scripts/docker.sh |