Skip to content

chore(deps): bump github.com/docker/docker from 26.1.1+incompatible to 26.1.4+incompatible #112

chore(deps): bump github.com/docker/docker from 26.1.1+incompatible to 26.1.4+incompatible

chore(deps): bump github.com/docker/docker from 26.1.1+incompatible to 26.1.4+incompatible #112

Workflow file for this run

name: ci
on:
pull_request:
branches: [ main ]
# Ensure this workflow can be run manually from the Actions tab.
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Build binaries
run: make -f .github/Makefile xcompile
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run tests
run: go test ./...
linters:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout 5m0s