Skip to content

Commit

Permalink
Merge pull request #3020 from vkarak/ci/validate-docs-everywhere
Browse files Browse the repository at this point in the history
[ci] Validate docs everywhere
  • Loading branch information
vkarak authored Oct 19, 2023
2 parents 0d60cc0 + 788f25e commit b1c8970
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b1c8970

Please sign in to comment.