Skip to content

fix: typo action

fix: typo action #2

Workflow file for this run

name: CI Workflow
on:
push:
branches:
- 'main' # excludes main
jobs:
lint:
uses: './.github/workflows/lint.yml'
test:
uses: './.github/workflows/test.yml'
generate-proto:
needs:
- lint
- test
uses: './.github/workflows/generate-proto.yml'
generate-diagram:
needs:
- generate-rpc-diagram

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

View workflow run for this annotation

GitHub Actions / CI Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 20, Col: 9): Job 'generate-diagram' depends on unknown job 'generate-rpc-diagram'. .github/workflows/ci.yml (Line: 25, Col: 9): Job 'push-file' depends on job 'generate-diagram' which creates a cycle in the dependency graph.
uses: './.github/workflows/generate-diagram.yml'
push-file:
needs:
- generate-proto
- generate-diagram
uses: './.github/workflows/push-file.yml'