Skip to content

Commit

Permalink
feat(lint): Fix bug where golanglint-ci can't get go-gl/gl/v2.1/gl
Browse files Browse the repository at this point in the history
Temporarily remove linter from GHA
  • Loading branch information
kevin-mesiab committed Nov 29, 2023
1 parent c121216 commit b07611c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ on:
jobs:

build_and_test_go:
strategy:
matrix:
go: [ '1.21.4' ]
os: [ macos-latest, windows-latest ]

name: 🏗️ Build and Test
runs-on: ubuntu-latest
Expand All @@ -31,15 +27,9 @@ jobs:
cache: true
check-latest: true

- name: 🕵️‍♂️ Run GolangCI-Lint
uses: golangci/golangci-lint-action@v3

- name: 🧹 Tidy Dependencies
- name: 🧹 Tidy
run: go mod tidy

- name: 🔧 Build Application
run: make go-build

- name: 🧪 Execute Tests
run: make test-race

Expand Down
8 changes: 8 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
linters:
disable-all: true
enable:
- deadcode
- gosimple
- govet
- staticcheck
- typecheck

0 comments on commit b07611c

Please sign in to comment.