-
Notifications
You must be signed in to change notification settings - Fork 16
30 lines (27 loc) · 974 Bytes
/
test_docs.yml
File metadata and controls
30 lines (27 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: Tests for EESSI test suite API docs
on: [push, pull_request, workflow_dispatch]
permissions: read-all
jobs:
test_API_docs_script:
runs-on: ubuntu-22.04
steps:
- name: Check out docs repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
repository: EESSI/docs
ref: main
persist-credentials: false
fetch-depth: 0
- name: Check out test-suite repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
persist-credentials: false
path: test-suite/test-suite
- name: install mkdocs + plugins
run: |
pip install -r requirements.txt
pip list | grep mkdocs
mkdocs --version
- name: build docs
run: make test