Skip to content

Commit 12ad3bc

Browse files
authored
Move setup-node step before setup-python in CI (#98)
1 parent f164fc8 commit 12ad3bc

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23-
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
25-
with:
26-
python-version: ${{ matrix.python-version }}
2723
- name: Set up Node.js
2824
uses: actions/setup-node@v4
2925
with:
3026
node-version: ${{ matrix.node-version }}
31-
if: matrix.python-version != 3.6
27+
- name: Set up Python ${{ matrix.python-version }}
28+
uses: actions/setup-python@v4
29+
with:
30+
python-version: ${{ matrix.python-version }}
3231
- name: Install dependencies
3332
run: |
3433
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)