This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
Plugins Lint (Go) - 9302312864 - @stevenGravy #1137
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Plugins Lint (Go) | |
run-name: Plugins Lint (Go) - ${{ github.run_id }} - @${{ github.actor }} | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
name: Plugins Lint (Go) | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout Teleport Plugins | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.57.2 | |
- name: Run linter | |
run: make lint |