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.

Fast Feedback also runs security scans for source code and built images.

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 pull-requests: 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 }}