Skip to content

Fix: Linting fixes and ignoring others #6

Fix: Linting fixes and ignoring others

Fix: Linting fixes and ignoring others #6

Workflow file for this run

name: CI Test
concurrency:
# Run only for most recent commit in PRs but for all tags and commits on main
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- '**'
env:
GOPRIVATE: github.com/Kong/*
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- run: git config --global url.https://[email protected]/.insteadOf https://github.com/
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PRIVATE_READ }}
- name: Setup go
uses: actions/setup-go@v5
- name: Setup golangci-lint
uses: golangci/golangci-lint-action@v6