Merge pull request #183 from ucam-department-of-psychiatry/workaround… #708
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: Build docs | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
paths: | |
- .github/workflows/docs.yml | |
- github_action_scripts/build_docs.sh | |
- github_action_scripts/change_apt_mirror.sh | |
- docs/** | |
- crate_anon/** | |
- setup.py | |
jobs: | |
build-docs: | |
strategy: | |
matrix: | |
include: | |
- name: ubuntu-22.04 | |
os: ubuntu-22.04 | |
python-version: "3.10" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Change apt mirror | |
run: | | |
set -eux -o pipefail | |
${GITHUB_WORKSPACE}/github_action_scripts/change_apt_mirror.sh | |
- name: Build docs | |
run: ${GITHUB_WORKSPACE}/github_action_scripts/build_docs.sh |