From e039eb74cf08e1e22b6ae7b714553d8f6e75b64e Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Tue, 17 Oct 2023 23:01:04 +0200 Subject: [PATCH 1/2] Validate docs everywhere --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0ebd08eb5d..7948b70a99 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -140,12 +140,15 @@ jobs: docvalidation: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 - - name: Setup up Python 3.8 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: ${{ matrix.python-version }} - name: Install Doc Requirements run: | python -m pip install -r docs/requirements.txt From 788f25e708f53181efe868e156ced9be26c41eda Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Tue, 17 Oct 2023 23:06:23 +0200 Subject: [PATCH 2/2] Validate docs in Python 3.6 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7948b70a99..39201daf71 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,9 +44,9 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: Install dependencies and docs run: | - ./bootstrap.sh + ./bootstrap.sh +docs - name: Generic Unittests run: | ./test_reframe.py