Skip to content

Commit

Permalink
Add test stage to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfont committed Apr 18, 2024
1 parent c906aaf commit 989dd89
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,25 @@ permissions:
id-token: write

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Setup cache
uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- name: Setup dependencies
run: pip install -r docs/requirements.txt
- name: Build docs
run: mkdocs build --strict

build:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 989dd89

Please sign in to comment.