Skip to content

fix: update new ClientOpt from 5509e40 with origin #69

fix: update new ClientOpt from 5509e40 with origin

fix: update new ClientOpt from 5509e40 with origin #69

Workflow file for this run

name: validate
on:
workflow_dispatch:
push:
branches:
- 'master'
tags:
- 'v*'
- 'dockerfile/*'
pull_request:
branches:
- 'master'
- 'v*'
env:
REPO_SLUG_ORIGIN: "moby/buildkit:latest"
BUILDX_VERSION: "v0.8.2" # leave empty to use the one available on GitHub virtual environment
jobs:
validate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- script: ./hack/lint
- script: ./hack/validate-vendor
- script: ./hack/validate-generated-files
- script: ./hack/validate-shfmt
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
version: ${{ env.BUILDX_VERSION }}
driver-opts: image=${{ env.REPO_SLUG_ORIGIN }}
-
name: Run
run: |
${{ matrix.script }}
-
name: Dump context
if: always()
uses: crazy-max/ghaction-dump-context@v1