mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
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 <jkukkonen@google.com>
This commit is contained in:
parent
77cb66bc87
commit
fd438c86fc
1 changed files with 2 additions and 2 deletions
4
.github/workflows/_test.yml
vendored
4
.github/workflows/_test.yml
vendored
|
|
@ -14,10 +14,10 @@ jobs:
|
|||
- name: Checkout TUF
|
||||
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
||||
|
||||
- name: Set up Python 3.x
|
||||
- name: Set up Python (oldest supported version)
|
||||
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
|
||||
with:
|
||||
python-version: 3.x
|
||||
python-version: 3.8
|
||||
cache: 'pip'
|
||||
cache-dependency-path: 'requirements/*.txt'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue