This repository was archived by the owner on Jul 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +25
-12
lines changed Expand file tree Collapse file tree 1 file changed +25
-12
lines changed Original file line number Diff line number Diff line change 12
12
- " requirements.txt"
13
13
14
14
jobs :
15
- check- build :
16
- runs-on : ubuntu-latest
15
+ build-docs :
16
+ runs-on : ${{ matrix.os }}
17
17
strategy :
18
18
matrix :
19
19
os : [ ubuntu-latest, macos-latest, windows-latest ]
20
20
python-version : [ "3.9", "3.10", "3.11", "3.12" ]
21
21
22
22
steps :
23
23
- name : Checkout
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
with :
26
26
submodules : true
27
27
28
- - name : Se tup Python ${{ matrix.python-version }}
28
+ - name : Set up Python ${{ matrix.python-version }}
29
29
uses : actions/setup-python@v4
30
30
with :
31
31
python-version : ${{ matrix.python-version }}
32
32
33
- - name : Set up NodeJS
34
- uses : actions/setup-node@v4
35
- with :
36
- node-version : 18
37
-
38
33
- name : Install dependencies
39
34
run : |
40
35
pip install -r requirements.txt
41
- npm install
42
36
43
37
- name : Build documents
44
38
run : |
45
39
LANGUAGE=en make html
46
40
LANGUAGE=uk make html
47
41
42
+ build-pres :
43
+ runs-on : ${{ matrix.os }}
44
+ strategy :
45
+ matrix :
46
+ os : [ ubuntu-latest, macos-latest, windows-latest ]
47
+
48
+ steps :
49
+ - name : Checkout
50
+ uses : actions/checkout@v4
51
+ with :
52
+ submodules : true
53
+
54
+ - name : Set up NodeJS
55
+ uses : actions/setup-node@v4
56
+ with :
57
+ node-version : 18
58
+
59
+ - name : Install dependencies
60
+ run : npm install
61
+
48
62
- name : Build presentations
49
- run : |
50
- npm run build
63
+ run : npm run build
You can’t perform that action at this time.
0 commit comments