Skip to content

refactor: split CI into reusable workflows #3

refactor: split CI into reusable workflows

refactor: split CI into reusable workflows #3

Workflow file for this run

name: Main
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
verify:
uses: ./.github/workflows/verify.yml
test:
needs: verify
uses: ./.github/workflows/test.yml
build:
needs: test
uses: ./.github/workflows/build.yml