Skip to content

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
jobs:
nix:
uses: ./.github/workflows/nix.yml
unit-tests:
uses: ./.github/workflows/test.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/test.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
all:
needs: [unit-tests]
runs-on: ubuntu-22.04
steps:
- name: Success
run: "true"