Skip to content

Commit b2430a0

Browse files
authored
Update Python version and workflow name in pylint.yml
1 parent ddabfda commit b2430a0

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/pylint.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
name: Pylint
1+
name: Code linting
22

3-
on: [push]
3+
on: [push, pull_request]
4+
5+
permissions:
6+
contents: read
47

58
jobs:
69
build:
710
runs-on: windows-latest
811
steps:
912
- uses: actions/checkout@v2
10-
- name: Set up Python 3.10
13+
- name: Set up Python 3.14
1114
uses: actions/setup-python@v2
1215
with:
13-
python-version: "3.10"
16+
python-version: "3.14"
1417
- name: Install dependencies
1518
run: |
1619
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)