@@ -4,29 +4,29 @@ on: [push, pull_request]
4
4
5
5
jobs :
6
6
lint_and_test :
7
- runs-on : ${{matrix.config. os}}
7
+ runs-on : ${{matrix.os}}
8
8
strategy :
9
9
fail-fast : true
10
10
max-parallel : 4
11
11
matrix :
12
- config :
13
- # - {os: ubuntu-latest, r: 'release'}
14
- # - {os: macOS-latest, r: 'release'}
15
- - {os: windows-latest, r: 'release'}
12
+ # os: [ubuntu-latest, macos-latest, windows-latest]
16
13
# python-version: [3.6, 3.7, 3.8, 3.9]
14
+ os : [windows-latest]
17
15
python-version : [3.7]
18
16
steps :
19
17
- uses : actions/checkout@v2
20
- - name : Set up ${{runner.os}} - Python ${{matrix.python-version}}
21
- uses : actions/setup-python@v2
22
- with :
23
- python-version : ${{matrix.python-version}}
18
+ # - name: Set up Python - ${{runner.os}}, v${{matrix.python-version}}
19
+ # uses: actions/setup-python@v2
20
+ # with:
21
+ # python-version: ${{matrix.python-version}}
22
+ # cache: pip
23
+ - name : Display Python version
24
+ run : python --version
24
25
- name : Install Python dependencies
25
26
run : |
26
- python -m pip install --upgrade pip
27
- python -m pip install wheel
28
- python -m pip install -r requirements.txt
29
- python -m pip install -r requirements-dev.txt
27
+ python -m pip install --upgrade pip setuptools wheel
28
+ pip install -r requirements.txt
29
+ pip install -r requirements-dev.txt
30
30
- name : Check formatting (black)
31
31
run : black --line-length 120 --check --diff gpxtrackposter tests scripts
32
32
- name : Lint (pylint)
0 commit comments