Skip to content

⬆ Bump the python-packages group with 4 updates (#4) #18

⬆ Bump the python-packages group with 4 updates (#4)

⬆ Bump the python-packages group with 4 updates (#4) #18

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request: {}
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --python 3.13 --group lint --all-extras
- uses: pre-commit/[email protected]
with:
extra_args: --all-files --verbose
env:
SKIP: no-commit-to-branch
# https://github.com/marketplace/actions/alls-green#why
# used for branch protection checks
check:
if: always()
needs: [lint]
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}