Skip to content

Merge pull request #105 from berquist/renovate/woodruffw-zizmor-pre-c… #283

Merge pull request #105 from berquist/renovate/woodruffw-zizmor-pre-c…

Merge pull request #105 from berquist/renovate/woodruffw-zizmor-pre-c… #283

Workflow file for this run

---
name: ci
# yamllint disable-line rule:truthy
on:
push:
pull_request:
concurrency:
group: ci-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
cancel-in-progress: true
permissions: {}
jobs:
prechecks:
uses: ./.github/workflows/pre-commit.yml
all-prechecks:
needs: [prechecks]
runs-on: ubuntu-latest
steps:
- name: Success
run: "true"
unit-tests:
needs: [prechecks]
uses: ./.github/workflows/test_and_package.yml
pixi:
needs: [prechecks]
uses: ./.github/workflows/pixi.yml
publish:

Check failure on line 30 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 30, Col: 3): Error calling workflow 'berquist/pymolresponse/.github/workflows/publish.yml@0020c16ea5e6016be46c1b62c3551ff4ce28e0a3'. The nested job 'publish-to-testpypi' is requesting 'id-token: write', but is only allowed 'id-token: none'. .github/workflows/ci.yml (Line: 30, Col: 3): Error calling workflow 'berquist/pymolresponse/.github/workflows/publish.yml@0020c16ea5e6016be46c1b62c3551ff4ce28e0a3'. The nested job 'publish-to-pypi' is requesting 'id-token: write', but is only allowed 'id-token: none'.
needs: [unit-tests, pixi]
uses: ./.github/workflows/publish.yml
all:
needs: [unit-tests, pixi, publish]
runs-on: ubuntu-latest
steps:
- name: Success
run: "true"