-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (30 loc) · 806 Bytes
/
test.yml
File metadata and controls
37 lines (30 loc) · 806 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
31
32
33
34
35
36
37
name: Tests CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout std
uses: actions/checkout@v2
with:
repository: ArkScript-lang/std
path: './std-latest'
- name: Checkout Ark
uses: actions/checkout@v2
with:
repository: ArkScript-lang/Ark
path: './ark-latest'
- name: Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- run: pip install -r requirements.txt
- run: |
export ARKDOC_LOGLEVEL=DEBUG
python -m arkdoc 3.1.0 std-latest/ ark-latest/src/arkreactor/Builtins --html out || exit 1