vendor: github.com/containerd/console 8f6c4e4 #3318
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: validate | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
- 'v[0-9]*' | |
tags: | |
- 'v*' | |
pull_request: | |
paths-ignore: | |
- '.github/releases.json' | |
jobs: | |
validate: | |
runs-on: ubuntu-22.04 | |
env: | |
GOLANGCI_LINT_MULTIPLATFORM: 1 | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- lint | |
- validate-vendor | |
- validate-docs | |
- validate-generated-files | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
version: latest | |
- | |
name: Run | |
run: | | |
make ${{ matrix.target }} |