chore: add id-token write permission to run-unittests workflow #106
This file contains hidden or 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: Feature workflow | ||
| on: | ||
| push: | ||
| branches: | ||
| - 'feature/*' | ||
| permissions: | ||
| contents: read | ||
| checks: write | ||
| jobs: | ||
| pre-commit: | ||
| name: Run pre-commit | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| - name: Setup Python | ||
| uses: actions/setup-python@v4 | ||
| with: | ||
| python-version: '3.9' | ||
| - name: Run pre-commit | ||
| uses: pre-commit/action@v3.0.1 | ||
| unittests: | ||
|
Check failure on line 28 in .github/workflows/feature.yml
|
||
| uses: ./.github/workflows/run-unittests.yml | ||
| with: | ||
| python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]' | ||