Merge pull request #4401 from vladmandic/master

Update GitHub Actions workflow for pull requests
This commit is contained in:
Vladimir Mandic
2025-11-14 09:43:24 -05:00
committed by GitHub
+3 -3
View File
@@ -6,7 +6,7 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
@@ -19,7 +19,7 @@ jobs:
- name: setup-python
uses: actions/setup-python@main
with:
python-version: 3.10.6
python-version: 3.12.3
cache: pip
cache-dependency-path: requirements.txt
- name: install-pylint
@@ -27,7 +27,7 @@ jobs:
python -m pip install --upgrade pip
pip install pylint
- name: pre-commit
uses: pre-commit-ci/lite-action@v1.0.2
uses: pre-commit-ci/lite-action@v1.1.0
if: always()
with:
msg: apply code formatting and linting auto-fixes