Skip to content

test: add workflows #70

test: add workflows

test: add workflows #70

Workflow file for this run

name: CI-CD
#on:
# push:
# branches:
# - "main"
# - "releases/**"
# tags:
# - v[0-9]+.[0-9]+.[0-9]+
# pull_request: ~
on:
push:
branches:
- e2e
jobs:
call-tests:
uses: ./.github/workflows/tests.yaml
call-fails:
needs: call-tests
uses: ./.github/workflows/fails.yaml

Check failure on line 22 in .github/workflows/ci-cd.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-cd.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/ci-cd.yaml" -> "./.github/workflows/fails.yaml" : failed to fetch workflow: workflow was not found.
call-e2e:
needs: call-fails
uses: ./.github/workflows/e2e.yaml
call-image:
needs: call-e2e
uses: ./.github/workflows/image.yaml