Skip to content

Auto-Privilege v1.0 — Rebrand and overhaul #1

Auto-Privilege v1.0 — Rebrand and overhaul

Auto-Privilege v1.0 — Rebrand and overhaul #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -count=1 ./...
- name: Vet
run: go vet ./...