Skip to content

Commit b1c5190

Browse files
Ken KundertKen Kundert
authored andcommitted
refine github actions workflow
1 parent 51eafe8 commit b1c5190

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ jobs:
66
strategy:
77
matrix:
88
os: [ubuntu-latest]
9-
# os: [ubuntu-latest, macos-latest, windows-latest]
109
python-version: ["3.8", "3.x"]
1110
max-parallel: 6
1211

1312
steps:
1413
- name: Checkout repository
1514
uses: actions/checkout@v4
1615
with:
17-
submodules: 'true'
16+
submodules: true
1817
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
18+
# uses: actions/setup-python@v5
19+
uses: actions/setup-node@v2
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Display Python version
2323
run: python -c "import sys; print(sys.version)"
2424
- name: Install packages
2525
run: |
2626
python -m pip install --upgrade pip
27+
pip install .
2728
pip install tox
2829
pip install coveralls
29-
pip install .
3030
- name: Run tests
3131
run: tox
3232
- name: Report test coverage

0 commit comments

Comments
 (0)