From 688b8d3ba6a0cc84e03591d236800c34d5d0b43a Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Sun, 10 Dec 2023 05:01:32 +0000 Subject: [PATCH] Build the tutorial nightly to get alerts if it fails --- .github/workflows/pr.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index a679fdc7..1fc6babc 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -7,6 +7,19 @@ concurrency: cancel-in-progress: true jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - name: Checkout source + uses: actions/checkout@v3 + - name: Instal Dependencies + run: pip install -r requirements.txt + - name: Build + run: mkdocs build + env: + INSIDERS_PAT: ${{ secrets.MATERIAL_INSIDERS_ACCESS }} + superlinter: name: Lint markdown and yaml runs-on: ubuntu-latest