Skip to content

DOCS: Check client_list before remove user #54

DOCS: Check client_list before remove user

DOCS: Check client_list before remove user #54

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24.6'
- name: Cache Go modules
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Lint
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
golangci-lint run
- name: Test
run: go test -v ./...
- name: Build
run: go build -v -o arcus-acl .