Skip to content

Deprecated Plugin

Deprecated Plugin #6

Workflow file for this run

name: CI/CD
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
pull_request: {}
jobs:
quality:
name: Quality (python${{ matrix.python-version }})
uses: ./.github/workflows/quality.yaml
strategy:
fail-fast: false
matrix:
python-version: ["3.8"]
with:
os: "ubuntu-latest"
python-version: ${{ matrix.python-version }}
poetry-version: "1.8.2"
test:
name: Test (python${{ matrix.python-version }})
uses: ./.github/workflows/test.yaml
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
with:
os: "ubuntu-latest"
python-version: ${{ matrix.python-version }}
poetry-version: "1.8.2"
build:
name: Build (python${{ matrix.python-version }})
uses: ./.github/workflows/build.yaml
needs:
- quality
- test
strategy:
fail-fast: false
matrix:
python-version: ["3.8"]
with:
os: "ubuntu-latest"
python-version: ${{ matrix.python-version }}
poetry-version: "1.8.2"
publish:

Check failure on line 44 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / CI/CD

Invalid workflow file

The workflow is not valid. .github/workflows/main.yaml (Line: 44, Col: 3): Error calling workflow 'Bendabir/mypypp/.github/workflows/publish.yaml@c12685eff71ca23abce909a7106b706941396307'. The nested job 'quality' is requesting 'id-token: write', but is only allowed 'id-token: none'.
name: Publish (python${{ matrix.python-version }})
uses: ./.github/workflows/publish.yaml
needs:
- build
strategy:
fail-fast: false
matrix:
python-version: ["3.8"]
with:
os: "ubuntu-latest"
python-version: ${{ matrix.python-version }}
poetry-version: "1.8.2"