Skip to content

Commit

Permalink
Update zsh-plugin-lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CoMfUcIoS authored Sep 25, 2023
1 parent 02608c8 commit 0d7c965
Showing 1 changed file with 12 additions and 29 deletions.
41 changes: 12 additions & 29 deletions .github/workflows/zsh-plugin-lint.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,17 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: flake8 Lint

name: Python application

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read
on: [push, pull_request]

jobs:
build:

flake8-lint:
runs-on: ubuntu-latest

name: Lint
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 ./zsh-local-ai --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 ./zsh-local-ai --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: flake8 Lint
uses: py-actions/flake8@v2

0 comments on commit 0d7c965

Please sign in to comment.