Skip to content

Commit fd438c8

Browse files
committed
CI: Run lint on oldest supported Python version
* This was suggested as best practice by a pylint developer * Seems better than CI randomly breaking when GitHub updates Python version (and pylint starts applying new rules that we can't follow because that would break old Python versions) Signed-off-by: Jussi Kukkonen <[email protected]>
1 parent 77cb66b commit fd438c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- name: Checkout TUF
1515
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
1616

17-
- name: Set up Python 3.x
17+
- name: Set up Python (oldest supported version)
1818
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
1919
with:
20-
python-version: 3.x
20+
python-version: 3.8
2121
cache: 'pip'
2222
cache-dependency-path: 'requirements/*.txt'
2323

0 commit comments

Comments
 (0)