Skip to content

ci(deps): bump the actions-all group across 1 directory with 4 updates #86

ci(deps): bump the actions-all group across 1 directory with 4 updates

ci(deps): bump the actions-all group across 1 directory with 4 updates #86

Workflow file for this run

name: CI
on:
pull_request:
branches:
- develop
- main
push:
branches:
- develop
- main
workflow_dispatch:
permissions:
contents: read
concurrency:
group: provider-ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
quality:
name: Quality
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.14"
cache: pip
- name: Install development dependencies
run: python -m pip install '.[dev]'
- name: Lint and type check
run: |
ruff check .
ruff format --check .
mypy
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
python-version:
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install development dependencies
run: python -m pip install '.[dev]'
- name: Run tests and coverage gate
run: pytest --cov --cov-report=term-missing -q
required:
name: CI Required
if: always()
needs:
- quality
- test
runs-on: ubuntu-latest
permissions:
contents: read
env:
QUALITY_RESULT: ${{ needs.quality.result }}
TEST_RESULT: ${{ needs.test.result }}
steps:
- name: Verify required jobs
run: |
if [[ "$QUALITY_RESULT" != "success" || \
"$TEST_RESULT" != "success" ]]; then
echo "One or more required provider checks failed."
exit 1
fi