-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 749 Bytes
/
push.yml
File metadata and controls
30 lines (27 loc) · 749 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
name: research CI
on: [ push ]
jobs:
UT:
name: unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: '3.6'
- run: pip install pytest stopit gym gym-mapf numpy colorama pandas scipy
- run: pytest --capture=no
env:
PYTHONPATH: "."
benchmark:
name: performance benchmark
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: '3.6'
- run: pip install stopit gym gym-mapf numpy colorama pandas scipy
- run: python tests/benchmark_solvers_on_envs.py
env:
PYTHONPATH: "."