@@ -41,11 +41,11 @@ jobs:
4141 run : go build -v ./...
4242
4343 - name : Run tests
44- run : go test -v -race -timeout 30s ./...
44+ run : go test -v -race -timeout 300s ./...
4545
4646 - name : Run tests with coverage
4747 if : matrix.go-version == '1.21'
48- run : go test -v -race -coverprofile=coverage.out -covermode=atomic -timeout 30s ./...
48+ run : go test -v -race -coverprofile=coverage.out -covermode=atomic -timeout 300s ./...
4949
5050 - name : Upload coverage to Codecov
5151 if : matrix.go-version == '1.21'
@@ -95,39 +95,39 @@ jobs:
9595 - name : Run CASE Expression Edge Cases
9696 run : go test -v -run TestCaseExpressionEdgeCases -timeout 15s
9797
98- lint :
99- name : Lint
100- runs-on : ubuntu-latest
101-
102- steps :
103- - name : Set up Go
104- uses : actions/setup-go@v4
105- with :
106- go-version : ' 1.21'
107-
108- - name : Check out code
109- uses : actions/checkout@v4
110-
111- - name : Run golangci-lint
112- uses : golangci/golangci-lint-action@v3
113- with :
114- version : latest
115- args : --timeout=5m
116-
117- security :
118- name : Security Scan
119- runs-on : ubuntu-latest
120-
121- steps :
122- - name : Set up Go
123- uses : actions/setup-go@v4
124- with :
125- go-version : ' 1.21'
126-
127- - name : Check out code
128- uses : actions/checkout@v4
129-
130- - name : Run Gosec Security Scanner
131- uses : securecodewarrior/github-action-gosec@v1
132- with :
133- args : ' ./...'
98+ # lint:
99+ # name: Lint
100+ # runs-on: ubuntu-latest
101+ #
102+ # steps:
103+ # - name: Set up Go
104+ # uses: actions/setup-go@v4
105+ # with:
106+ # go-version: '1.21'
107+ #
108+ # - name: Check out code
109+ # uses: actions/checkout@v4
110+ #
111+ # - name: Run golangci-lint
112+ # uses: golangci/golangci-lint-action@v3
113+ # with:
114+ # version: latest
115+ # args: --timeout=5m
116+ #
117+ # security:
118+ # name: Security Scan
119+ # runs-on: ubuntu-latest
120+ #
121+ # steps:
122+ # - name: Set up Go
123+ # uses: actions/setup-go@v4
124+ # with:
125+ # go-version: '1.21'
126+ #
127+ # - name: Check out code
128+ # uses: actions/checkout@v4
129+ #
130+ # - name: Run Gosec Security Scanner
131+ # uses: securecodewarrior/github-action-gosec@v1
132+ # with:
133+ # args: './...'
0 commit comments