mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-23 15:23:58 +00:00
13 lines
291 B
YAML
13 lines
291 B
YAML
on: [push, pull_request]
|
|
name: Linter
|
|
jobs:
|
|
Golint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fetch Repository
|
|
uses: actions/checkout@v2
|
|
- name: Run Golint
|
|
uses: reviewdog/action-golangci-lint@v1
|
|
with:
|
|
golangci_lint_flags: "--tests=false"
|