Some checks failed
/ lint_job (pull_request) Failing after 2m1s
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
20 lines
No EOL
415 B
YAML
20 lines
No EOL
415 B
YAML
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
lint_job:
|
|
runs-on: raw
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup golang
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.21"
|
|
|
|
- name: golangci-lint
|
|
uses: https://github.com/golangci/golangci-lint-action@v8
|
|
with:
|
|
version: v2.1 |