From 3329709cddc0041e2d0519b753b227d957ea69c6 Mon Sep 17 00:00:00 2001 From: zakhaev26 Date: Mon, 25 Dec 2023 16:49:18 +0530 Subject: [PATCH] CI: removes linter (go) --- .github/workflows/lint-go-ci.yml | 28 ---------------------------- .gitignore | 3 ++- 2 files changed, 2 insertions(+), 29 deletions(-) delete mode 100644 .github/workflows/lint-go-ci.yml diff --git a/.github/workflows/lint-go-ci.yml b/.github/workflows/lint-go-ci.yml deleted file mode 100644 index 80cedf8..0000000 --- a/.github/workflows/lint-go-ci.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Go Linter CI - -on: - push: - branches: - - api/basketball - - main -jobs: - lint: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.21.4 - - - name: Install golint - run: | - cd src/api/basketball - go mod tidy - go get -u golang.org/x/lint/golint - - - name: Run golint - run: golint diff --git a/.gitignore b/.gitignore index 2433f67..05e37a6 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ secrets # Output of the go coverage tool, specifically when used with LiteIDE *.out +./github/workflows/lint-go-ci.yml # Dependency directories (remove the comment below to include it) vendor/ @@ -21,4 +22,4 @@ src/api/basketball/.env # Go workspace file -go.work \ No newline at end of file +go.work