Some checks failed
/ lint_job (pull_request) Failing after 1m10s
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
23 lines
No EOL
488 B
YAML
23 lines
No EOL
488 B
YAML
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
lint_job:
|
|
runs-on: raw
|
|
container:
|
|
image: golangci/golangci-lint:v1.56.2
|
|
steps:
|
|
- name: Setup NodeJS
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: '24'
|
|
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run linters
|
|
uses: https://github.com/wearerequired/lint-action@v2
|
|
with:
|
|
gofmt: true
|
|
golint: true |