Document Conventional Commits closing keywords for Git commits #3366
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: CI | |
permissions: read-all | |
on: | |
push: | |
branches: | |
- master | |
- '[0-9]+.[0-9]+' | |
pull_request: | |
jobs: | |
build_warning_nix: | |
name: Build with warnings as errors using the environment provided by Nix | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: cachix/install-nix-action@3715ab1a11cac9e991980d7b4a28d80c7ebdd8f9 | |
- name: Build | |
run: nix-shell --pure --run 'make SPHINXOPTS='-W' html' | |
build_docker_image_theme_tuleap_org: | |
name: Check build of the Docker image with the tuleap.org theme (docs.tuleap.org) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Build image | |
run: docker build -f docs.tuleap.org/Dockerfile -t test-build . | |
build_docker_image_linkcheck: | |
name: Check build of the Docker image used to run linkcheck | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Build image | |
run: docker build -f build-support/linkcheck-docker.dockerfile -t test-build-linkcheck . |