Skip to content
This repository was archived by the owner on Apr 6, 2026. It is now read-only.

8.12.1

8.12.1 #62

Workflow file for this run

name: ci
on:
pull_request:
branches:
- master
env:
GOLANG_VERSION: 1.24.2
GOLANGCI_LINT_VERSION: v2.1
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Lint
uses: golangci/[email protected]
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
tests:
runs-on: ubuntu-latest
services:
docker:
image: docker:20.10.7
options: --privileged
volumes:
- /var/run/docker.sock:/var/run/docker.sock
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up Docker
run: |
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io
- name: Run make tests
run: make tests