From f0d9c2b66b63d32fe5e138fa358eb355a53a6e3e Mon Sep 17 00:00:00 2001 From: Benoit Chevallier-Mames Date: Tue, 12 Mar 2024 20:09:21 +0100 Subject: [PATCH] chore(compiler): adding a job for the CI --- .github/workflows/testing_doc_is_updated.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/testing_doc_is_updated.yml diff --git a/.github/workflows/testing_doc_is_updated.yml b/.github/workflows/testing_doc_is_updated.yml new file mode 100644 index 0000000000..e38084df3b --- /dev/null +++ b/.github/workflows/testing_doc_is_updated.yml @@ -0,0 +1,18 @@ +# Check that the documentation is up to date +name: Check that the documentation is up to date + +on: + # Nightly Release @ 3AM after each work day + - cron: "0 3 * * 2-6" + +jobs: + check-doc: + name: Check that the documentation is up to date + runs-on: ubuntu-20.04 + steps: + - name: Check that the documentation is up to date + shell: bash + run: | + set +e + + ./ci/scripts/make_apidocs.sh