Skip to content

Add support for generic policy iteration when authorizing a request #283

Add support for generic policy iteration when authorizing a request

Add support for generic policy iteration when authorizing a request #283

Workflow file for this run

name: Verify
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...
- name: Lint
uses: golangci/golangci-lint-action@v7
- name: Fuzz
run: mkdir -p testdata && go test -fuzz=FuzzParse -fuzztime 60s && go test -fuzz=FuzzTokenize -fuzztime 60s