-
-
Notifications
You must be signed in to change notification settings - Fork 210
47 lines (38 loc) · 871 Bytes
/
ci.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "**"
env:
FORCE_COLOR: 2
NODE: 20
PYTHON_VERSION: "3.11"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "${{ env.PYTHON_VERSION }}"
architecture: "x64"
cache: pip
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: "${{ env.NODE }}"
cache: npm
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Install npm dependencies
run: npm ci
- name: Build docs
run: mkdocs build --strict
- name: Test
run: npm test