1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
name: CI on: push: branches: [main] pull_request: branches: [main] jobs: lint: uses: ./.github/workflows/_lint.yml test: uses: ./.github/workflows/_test.yml build: needs: [lint, test] uses: ./.github/workflows/_build.yml