mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 20:54:51 +00:00
25 lines
634 B
YAML
Vendored
25 lines
634 B
YAML
Vendored
name: test-doc
|
|
on: [push, pull_request, workflow_dispatch]
|
|
jobs:
|
|
test-doc:
|
|
runs-on: ubuntu-22.04
|
|
continue-on-error: true
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.x'
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r tests-requirements.txt
|
|
npm install -g remark-cli remark-validate-links
|
|
- name: Check the doc
|
|
run: |
|
|
./scripts/check-doc.sh
|