5
5
6
6
on :
7
7
push :
8
- branches : [ master ]
8
+ branches : [master]
9
9
pull_request :
10
- branches : [ master ]
10
+ branches : [master]
11
11
12
12
jobs :
13
13
build :
@@ -20,43 +20,46 @@ jobs:
20
20
strategy :
21
21
matrix :
22
22
python-version : ["3.8", "3.9", "3.10", "3.11"]
23
+
23
24
steps :
24
- - uses : actions/checkout@v2
25
- with :
26
- submodules : true
27
- - name : Set up Python ${{ matrix.python-version }}
28
- uses : actions/setup-python@v2
29
- with :
30
- python-version : ${{ matrix.python-version }}
31
- - name : Install dependencies
32
- run : |
33
- python -m pip install --upgrade pip
25
+ - uses : actions/checkout@v3
26
+ with :
27
+ submodules : true
28
+ - name : Set up Python ${{ matrix.python-version }}
29
+ uses : actions/setup-python@v4
30
+ with :
31
+ python-version : ${{ matrix.python-version }}
32
+ - name : Install dependencies
33
+ run : |
34
+ python -m pip install --upgrade pip
34
35
35
- # Install Atari Roms
36
- pip install autorom
37
- wget https://gist.githubusercontent.com/jjshoots/61b22aefce4456920ba99f2c36906eda/raw/00046ac3403768bfe45857610a3d333b8e35e026/Roms.tar.gz.b64
38
- base64 Roms.tar.gz.b64 --decode &> Roms.tar.gz
39
- AutoROM --accept-license --source-file Roms.tar.gz
36
+ # Install Atari Roms
37
+ pip install autorom
38
+ wget https://gist.githubusercontent.com/jjshoots/61b22aefce4456920ba99f2c36906eda/raw/00046ac3403768bfe45857610a3d333b8e35e026/Roms.tar.gz.b64
39
+ base64 Roms.tar.gz.b64 --decode &> Roms.tar.gz
40
+ AutoROM --accept-license --source-file Roms.tar.gz
40
41
41
- # cpu version of pytorch - faster to download
42
- pip install torch==2.3.1 --index-url https://download.pytorch.org/whl/cpu
42
+ # cpu version of pytorch - faster to download
43
+ pip install torch==2.3.1 --index-url https://download.pytorch.org/whl/cpu
43
44
44
- pip install -r requirements.txt
45
- # Use headless version
46
- pip install opencv-python-headless
47
- pip install -e .[plots,tests]
48
- - name : Lint with ruff
49
- run : |
50
- make lint
51
- - name : Check codestyle
52
- run : |
53
- make check-codestyle
54
- - name : Build doc
55
- run : |
56
- make doc
57
- - name : Type check
58
- run : |
59
- make type
60
- - name : Test with pytest
61
- run : |
62
- make pytest
45
+ pip install -r requirements.txt
46
+ # Use headless version
47
+ pip install opencv-python-headless
48
+ pip install -e .[plots,tests]
49
+ - name : Lint with ruff
50
+ run : |
51
+ make lint
52
+ - name : Check codestyle
53
+ run : |
54
+ make check-codestyle
55
+ - name : Build the doc
56
+ run : |
57
+ make doc
58
+ - name : Type check
59
+ run : |
60
+ make type
61
+ # Do not run for python 3.8 (mypy internal error)
62
+ if : matrix.python-version != '3.8'
63
+ - name : Test with pytest
64
+ run : |
65
+ make pytest
0 commit comments