1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-23 15:23:58 +00:00
fiber/.github/workflows/linter.yml
2020-05-16 05:02:58 +02:00

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"