build(deps): bump python from 3.12-slim-bookworm to 3.13-slim-bookworm in /src #41
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: # Target branches | |
- main | |
# default token permissions = none | |
permissions: {} | |
jobs: | |
validate: | |
# condition: Execute IFF it is protected branch update, or a PR that is NOT in a draft state | |
if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }} | |
uses: ./.github/workflows/validate.yml | |
permissions: {} | |
secrets: {} |