Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit98b1113

Browse files
authored
Create pylint.yml
1 parent5f479c3 commit98b1113

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

‎.github/workflows/pylint.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name:Pylint
2+
3+
on:[push]
4+
5+
jobs:
6+
build:
7+
runs-on:ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version:["3.8", "3.9", "3.10"]
11+
steps:
12+
-uses:actions/checkout@v3
13+
-name:Set up Python ${{ matrix.python-version }}
14+
uses:actions/setup-python@v3
15+
with:
16+
python-version:${{ matrix.python-version }}
17+
-name:Install dependencies
18+
run:|
19+
python -m pip install --upgrade pip
20+
pip install pylint
21+
-name:Analysing the code with pylint
22+
run:|
23+
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp