Skip to content

chore: change name to notary #463

chore: change name to notary

chore: change name to notary #463

Workflow file for this run

name: Main workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
unit-test-frontend:
uses: ./.github/workflows/test-frontend.yaml
build-nextjs:
uses: ./.github/workflows/build-frontend.yaml
unit-test-notary:
needs: [build-nextjs]
uses: ./.github/workflows/test-notary.yaml
go-vet:
needs: [build-nextjs]
uses: ./.github/workflows/go-vet.yaml
go-lint:
needs: [build-nextjs]
uses: ./.github/workflows/go-lint.yaml
build-notary:
needs: [build-nextjs]
uses: ./.github/workflows/build-notary.yaml
rock-build:
needs: [build-notary, unit-test-notary, go-vet, go-lint]
uses: ./.github/workflows/build-rock.yaml
rock-scan:
if: github.ref_name == 'main'
needs: [rock-build]
uses: ./.github/workflows/scan-rock.yaml
publish:
if: github.ref_name == 'main'
needs: [rock-build]
uses: ./.github/workflows/publish-rock.yaml