Skip to content

Commit aaf2dc0

Browse files
committed
test #7
1 parent 3716b72 commit aaf2dc0

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/main.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@ on: [push, pull_request]
44

55
jobs:
66
lint_and_test:
7-
runs-on: ${{matrix.config.os}}
7+
runs-on: ${{matrix.os}}
88
strategy:
99
fail-fast: true
1010
max-parallel: 4
1111
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]
1613
# python-version: [3.6, 3.7, 3.8, 3.9]
14+
os: [windows-latest]
1715
python-version: [3.7]
1816
steps:
1917
- 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
2425
- name: Install Python dependencies
2526
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
3030
- name: Check formatting (black)
3131
run: black --line-length 120 --check --diff gpxtrackposter tests scripts
3232
- name: Lint (pylint)

0 commit comments

Comments
 (0)