Skip to content

Disk backend

Disk backend #8

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
permissions:
contents: read
jobs:
lint:
name: Run Linter
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest
- name: Run linter
run: make lint