Skip to content

Merge branch 'main' into add-filters-for-audit-logs #902

Merge branch 'main' into add-filters-for-audit-logs

Merge branch 'main' into add-filters-for-audit-logs #902

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.22.0"
cache: true
- name: Lint
run: go vet ./...
- name: Test
run: go test ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
args: --timeout=10m ./...