Skip to content

Commit

Permalink
Update python-3.11.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
justinh-rahb authored Aug 28, 2023
1 parent c995992 commit a8d14cb
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions .github/workflows/python-3.11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,28 +35,9 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint -E -d import-error $(git ls-files '*.py')
dependabot:
name: 'Dependabot'
needs: [build, test]
needs: build
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
Expand Down

0 comments on commit a8d14cb

Please sign in to comment.