Skip to content

feat: authentication using CSP #215

feat: authentication using CSP

feat: authentication using CSP #215

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
run_suite:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.19.x, 1.20.x, 1.21.x]
name: Go ${{ matrix.go-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go mod download
- name: check vendor
run: |
diff -u <(echo -n) <(gofmt -d $(go list -f {{.Dir}} ./... | grep -v /vendor/))
- run: go test -timeout 10m -v -race ./...
- run: go vet ./...