build(deps): bump ruff from 0.8.4 to 0.9.4 #437
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code quality tests | |
env: | |
ALL_PYTHON_VERSIONS: "['3.11', '3.12']" | |
CACHE_VERSION: 1 | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
info: | |
runs-on: ubuntu-latest | |
name: Collect information & changes data | |
outputs: | |
run_pipeline: ${{ steps.changes.outputs.core }} | |
python_versions: ${{ steps.info.outputs.python_versions }} | |
python_cache_key: ${{ steps.generate_python_cache_key.outputs.key }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.2.2 | |
- name: Filter for core changes | |
uses: dorny/paths-filter@v3.0.2 | |
id: changes | |
with: | |
filters: | | |
core: | |
- ./**/*.py | |
- .github/**/*.yml | |
- pyproject.toml | |
- name: Collect additional information | |
id: info | |
run: | | |
echo "python_versions: ${ALL_PYTHON_VERSIONS}" | |
echo "python_versions=${ALL_PYTHON_VERSIONS}" >> $GITHUB_OUTPUT | |
- name: Generate partial Python venv restore key | |
id: generate_python_cache_key | |
run: >- | |
echo "key=venv-${{ env.CACHE_VERSION }}-${{ | |
hashFiles('pyproject.toml') }}" >> $GITHUB_OUTPUT | |
create-virtualenv: | |
name: Setup environment | |
runs-on: ubuntu-latest | |
needs: info | |
timeout-minutes: 30 | |
if: needs.info.outputs.run_pipeline == 'true' | |
strategy: | |
matrix: | |
python-version: ${{ fromJSON(needs.info.outputs.python_versions) }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.2.2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5.4.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Restore base Python virtual environment | |
id: cache-venv | |
uses: actions/cache@v4.2.0 | |
with: | |
path: venv | |
lookup-only: true | |
key: >- | |
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ | |
needs.info.outputs.python_cache_key }} | |
- name: Install requirements | |
run: | | |
python -m venv venv | |
. venv/bin/activate | |
python3 -m pip install -e .'[dev]' | |
if: steps.cache-venv.outputs.cache-hit != 'true' | |
linter: | |
name: Run code linters | |
needs: | |
- create-virtualenv | |
- info | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
python-version: ${{ fromJSON(needs.info.outputs.python_versions) }} | |
if: needs.info.outputs.run_pipeline == 'true' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.2.2 | |
with: | |
fetch-depth: "2" | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5.4.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Restore full Python ${{ steps.python.outputs.python-version }} virtual environment | |
id: cache-venv | |
uses: actions/cache/restore@v4.2.0 | |
with: | |
path: venv | |
fail-on-cache-miss: true | |
key: >- | |
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ | |
needs.info.outputs.python_cache_key }} | |
- name: Run ruff (fully) | |
run: | | |
. venv/bin/activate | |
pre-commit run --hook-stage manual ruff --all-files --show-diff-on-failure | |
- name: Run Black | |
run: | | |
. venv/bin/activate | |
black --check --fast --quiet --diff pyesef tests | |
- name: Run mypy | |
run: | | |
. venv/bin/activate | |
mypy pyesef | |
- name: Run pylint | |
run: | | |
. venv/bin/activate | |
pylint pyesef tests | |
pytest: | |
name: Run test suite | |
continue-on-error: true | |
needs: | |
- info | |
- create-virtualenv | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
python-version: ${{ fromJSON(needs.info.outputs.python_versions) }} | |
if: needs.info.outputs.run_pipeline == 'true' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.2.2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5.4.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Restore full Python ${{ steps.python.outputs.python-version }} virtual environment | |
id: cache-venv | |
uses: actions/cache/restore@v4.2.0 | |
with: | |
path: venv | |
fail-on-cache-miss: true | |
key: >- | |
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ | |
needs.info.outputs.python_cache_key }} | |
- name: Run tests | |
run: | | |
. venv/bin/activate | |
export PYTEST_ARGS="--timeout=90 --cov pyesef --cov-report xml:coverage.xml" | |
pytest tests/ $PYTEST_ARGS | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2.3.6 | |
with: | |
flag-name: run-${{ join(matrix.*, '-') }} | |
parallel: true | |
finish: | |
needs: pytest | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@v2.3.6 | |
with: | |
parallel-finished: true | |
carryforward: "run-3.11,run-3.12" |