Skip to content

Bump golangci/golangci-lint-action from 4 to 5 (#424) #1022

Bump golangci/golangci-lint-action from 4 to 5 (#424)

Bump golangci/golangci-lint-action from 4 to 5 (#424) #1022

on: [ push, pull_request ]
name: Build & Test
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install dependency libraries
run: |
sudo apt-get update
sudo apt-get install -y libgpgme-dev libdevmapper-dev build-essential pkg-config libbtrfs-dev
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -tags integration