Update pnpm/action-setup action to v3 #63
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
# 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: | ||
Check failure on line 39 in .github/workflows/ic.yml GitHub Actions / Client PythonInvalid workflow file
|
||
permissions: | ||
contents: read | ||
id-token: write # Allows this job to create releases | ||
with: | ||
dry-run: ${{ github.ref_name == 'master' }} | ||
needs: [ tests ] | ||
uses: ./.github/workflows/pypi.yml |