Skip to Content
Path To ProductionQuality Gate: Fast Feedback

Fast Feedback

Fast feedback gives engineers fast feedback on every change. It is run on every PR and on every commit to main.

Implement the following Make targets:

Usage

If you used corectl to create your application this workflow will already be in your repository.

name: Fast Feedback on: push: branches: - main pull_request: branches: - main permissions: contents: write id-token: write jobs: version: uses: coreeng/p2p/.github/workflows/p2p-version.yaml@v1 secrets: git-token: ${{ secrets.GITHUB_TOKEN }} fastfeedback: needs: [version] uses: coreeng/p2p/.github/workflows/p2p-workflow-fastfeedback.yaml@v1 with: version: ${{ needs.version.outputs.version }}