Skip to content

🌱 Bump docker/build-push-action from 5 to 6 in the all-github-actions group #762

🌱 Bump docker/build-push-action from 5 to 6 in the all-github-actions group

🌱 Bump docker/build-push-action from 5 to 6 in the all-github-actions group #762

Workflow file for this run

name: Pull Request Validation
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
validate:
name: "Validate ${{ matrix.target }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: ["verify", "lint", "test"]
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: ${{ matrix.target }}
run: make ${{ matrix.target }}