Skip to content

Bump github.com/moby/buildkit from 0.11.4 to 0.12.5 #57

Bump github.com/moby/buildkit from 0.11.4 to 0.12.5

Bump github.com/moby/buildkit from 0.11.4 to 0.12.5 #57

Workflow file for this run

name: CI
on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Verify go.mod
run: go mod tidy && git diff --exit-code
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Build
run: make build
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libgpgme-dev libbtrfs-dev libdevmapper-dev
- name: Tests
run: go test -v ./...