Skip to content

Commit 128ba2b

Browse files
committed
Sync workflow steps order in "Check Python" workflow with template
No real functional difference or real advantage to either order, but this is the way it is in the standardized "template" workflow, so it must be so here as well.
1 parent f0bda58 commit 128ba2b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/check-python-task.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,6 @@ jobs:
3737
- name: Checkout repository
3838
uses: actions/checkout@v2
3939

40-
- name: Install Task
41-
uses: arduino/setup-task@v1
42-
with:
43-
repo-token: ${{ secrets.GITHUB_TOKEN }}
44-
version: 3.x
45-
4640
- name: Install Python
4741
uses: actions/setup-python@v2
4842
with:
@@ -51,5 +45,11 @@ jobs:
5145
- name: Install Poetry
5246
run: pip install poetry
5347

48+
- name: Install Task
49+
uses: arduino/setup-task@v1
50+
with:
51+
repo-token: ${{ secrets.GITHUB_TOKEN }}
52+
version: 3.x
53+
5454
- name: Run flake8
5555
run: task python:lint

0 commit comments

Comments
 (0)