Skip to content

chore: removing coverage #7

chore: removing coverage

chore: removing coverage #7

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yaml

Invalid workflow file

(Line: 33, Col: 20): Job 'release' depends on unknown job 'check'.
permissions:
contents: read
on:
push:
branches: ['**']
jobs:
build:
uses: ./.github/workflows/build.yaml
# check:
# needs: build
# uses: ./.github/workflows/check.yaml
# Skipping for now as demo projects aren't currently running in GHA
# test-demo-projects:
# needs: [build, check]
# uses: ./.github/workflows/test-demo-projects.yaml
# secrets: inherit
test-integration:
# needs: [build, check, test-demo-projects]
# needs: [build, check]
needs: [build]
uses: ./.github/workflows/test-integration.yaml
secrets: inherit
release:
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/canary' || github.ref == 'refs/heads/dx-542-update-to-gha')
# needs: [build, check, test-demo-projects, test-integration]
needs: [build, check, test-integration]
permissions:
contents: write
id-token: write
actions: read
uses: ./.github/workflows/release.yaml
secrets:
VAULT_URL: ${{ secrets.VAULT_URL }}