Skip to content

Rename OrganizationID to OrgID #60

Rename OrganizationID to OrgID

Rename OrganizationID to OrgID #60

Workflow file for this run

# Copyright 2023 Tyk Technologies
# SPDX-License-Identifier: MPL-2.0
name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
name: Go ${{ matrix.go-version }}
strategy:
matrix:
go-version:
- "1.19"
- "1.20"
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
- name: Install dependencies
run: go get ./...
- name: Test
run: go test -v ./...