Skip to content

Commit

Permalink
flake8 renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Sep 21, 2024
1 parent 60e0198 commit f397f4c
Showing 1 changed file with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
---
name: Python-Flake8-Linter
name: flake8
'on':
push:
branches:
Expand All @@ -30,17 +30,11 @@ name: Python-Flake8-Linter
- master
jobs:
flake8:
name: Flake8
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: pip install flake8
- name: Run Flake8
run: |
flake8 --max-line-length=120 .
- run: pip install flake8
- run: flake8 --max-line-length=120 .

0 comments on commit f397f4c

Please sign in to comment.