Skip to content

Commit 182c0bb

Browse files
authored
Update pylint.yml
1 parent 24d1878 commit 182c0bb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pylint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
1616

1717
steps:
18-
- name: 📥 Checkout code
18+
- name: Checkout repository
1919
uses: actions/checkout@v4
2020

21-
- name: 🐍 Set up Python ${{ matrix.python-version }}
21+
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525

26-
- name: 📦 Install dependencies
26+
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
2929
pip install pylint
3030
31-
- name: 🧪 Run pylint
31+
- name: Run pylint
3232
run: |
3333
pylint $(git ls-files '*.py') || true

0 commit comments

Comments
 (0)