Skip to content

Add new admin access for orgs and profile (#30) #129

Add new admin access for orgs and profile (#30)

Add new admin access for orgs and profile (#30) #129

Workflow file for this run

name: CI
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- "1.20"
- "1.21"
- "1.22"
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Run linters
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Run tests
run: go test ./... -v