Revert "Add GitHub Action for golangci-lint (#5973)" (#6138)

This reverts commit 5fe5859c38.

Per #5973:

> we will eventually want to go back to doing this in boulder-tools, so it's easy
> to run the lints locally. But this is useful so we can unblock testing on go 1.18beta2.
This commit is contained in:
Jacob Hoffman-Andrews 2022-05-25 14:35:39 -07:00 committed by GitHub
parent 8227c8fcb2
commit 3e01ffe8bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 27 deletions

View File

@ -40,7 +40,7 @@ jobs:
# Tests command definitions. Use the entire docker-compose command you want to run. # Tests command definitions. Use the entire docker-compose command you want to run.
tests: tests:
# Run ./test.sh --help for a description of each of the flags. # Run ./test.sh --help for a description of each of the flags.
- "./t.sh --generate --make-artifacts" - "./t.sh --lints --generate --make-artifacts"
- "./t.sh --integration" - "./t.sh --integration"
# Testing Config Changes: # Testing Config Changes:
# Config changes that have landed in main but not yet been applied to # Config changes that have landed in main but not yet been applied to

View File

@ -1,26 +0,0 @@
name: golangci-lint
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- main
- release-branch-*
pull_request:
branches:
- '*'
permissions:
contents: read
pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.46.2
args: --timeout 9m
only-new-issues: true