Skip to content

Commit

Permalink
Update Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Schrodinger71 committed Dec 26, 2024
1 parent 476ff0d commit c854feb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: '3.11'

- name: Cache Python dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-cache-${{ hashFiles('**/requirements.txt') }}
Expand All @@ -48,21 +48,21 @@ jobs:
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: test-report
path: test-report.xml

- name: Upload Pylint report
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: pylint-report
path: pylint-report.txt

- name: Upload Flake8 report
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: flake8-report
path: flake8-report.txt

0 comments on commit c854feb

Please sign in to comment.