-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (41 loc) · 1.45 KB
/
Copy pathmissions.yml
File metadata and controls
55 lines (41 loc) · 1.45 KB
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
48
49
50
51
52
53
54
55
name: company-workspace
on:
push:
pull_request:
permissions:
contents: read
jobs:
mission-studio:
name: Company workspace and recipes (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v7
with:
python-version: '3.13'
- uses: actions/setup-node@v7
with:
node-version: 'lts/*'
package-manager-cache: false
- name: Project state and native launcher tests
run: python -m unittest discover -s tests -p test_project.py
- name: Harness policy and bounded loop tests
run: python -m unittest discover -s tests -p test_harness.py
- name: CTO routing and canonical registry tests
run: python -m unittest discover -s tests -p test_cto.py
- name: Mission compiler tests
run: python -m unittest discover -s tests -p test_missions.py
- name: Company experience tests
run: node --test tests/test_company.js tests/test_harness.js
- name: Studio tests
run: node --test tests/test_studio.js
- name: Company dataset is current
run: python scripts/build_company.py --check
- name: Studio dataset is current
run: python scripts/build_studio.py --check
- name: Repository validation
run: python scripts/validate.py