Skip to content

all-successful

all-successful #118

Workflow file for this run

name: Continuous Integration
# always run CI on new commits to any branch
on: push
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/[email protected]
all-successful:
if: always()
runs-on: ubuntu-latest
needs:
- lint
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/[email protected]
with:
jobs: ${{ toJSON(needs) }}