Skip to content

Update actions/checkout digest to 692973e #108

Update actions/checkout digest to 692973e

Update actions/checkout digest to 692973e #108

Workflow file for this run

# Processus de base pour l'intégration continue
name: Client Python
on:
workflow_dispatch:
push:
branches:
- master
- 'renovate/**'
paths-ignore:
- '.github/**'
- '!.github/workflows/ic.yml'
- '!.github/workflows/pypi.yml'
- '!.github/workflows/test.yml'
- '**.md'
- .editorconfig
- .gitignore
- '.idea/**'
- '.vscode/**'
pull_request:
paths-ignore:
- '.github/**'
- '!.github/workflows/ic.yml'
- '!.github/workflows/pypi.yml'
- '!.github/workflows/test.yml'
- '**.md'
- .editorconfig
- .gitignore
- '.idea/**'
- '.vscode/**'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
uses: ./.github/workflows/tests.yml
pypi:
permissions:
contents: write
id-token: write # Allows this job to create releases
with:
dry-run: ${{ github.ref_type != 'tag' }}
needs: [ tests ]
uses: ./.github/workflows/pypi.yml