Skip to content

Commit

Permalink
testing ci workflow for pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
kliu57 committed Nov 16, 2023
1 parent fefb696 commit 7226aee
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: '3.12'

- name: Install dependencies
run: |
Expand All @@ -41,7 +40,7 @@ jobs:
- name: Analysing the code with pylint
run: |
pylint --fail-under=9.75 src/ tests/ conftest.py
pylint --fail-under=9.9 src/ tests/ conftest.py
- name: Test with pytest
run: |
Expand Down

0 comments on commit 7226aee

Please sign in to comment.