mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-31 11:52:41 +00:00
17 lines
338 B
YAML
17 lines
338 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- v3-beta
|
|
pull_request:
|
|
name: Linter
|
|
jobs:
|
|
Golint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fetch Repository
|
|
uses: actions/checkout@v3
|
|
- name: Run Golint
|
|
uses: reviewdog/action-golangci-lint@v2
|
|
with:
|
|
golangci_lint_flags: "--tests=false"
|