Some checks failed
Lint / Run on Ubuntu (push) Waiting to run
Tests / Run on Ubuntu (push) Successful in 1m22s
E2E Tests / Run on Ubuntu (push) Failing after 27m33s
Build images / Run e2e tests (push) Failing after 1m19s
Build images / Run unit test (push) Successful in 1m22s
Build images / Run lint test (push) Failing after 4m31s
Build images / Build docker image (push) Has been skipped
25 lines
430 B
YAML
25 lines
430 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint:
|
|
name: Run on Ubuntu
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone the code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.mod
|
|
|
|
- name: Run linter
|
|
uses: golangci/golangci-lint-action@v6
|
|
with:
|
|
version: v1.63.4
|
|
args: --timeout=20m
|