mirror of https://github.com/daffainfo/nuclei.git
19 lines
389 B
YAML
19 lines
389 B
YAML
name: 🙏🏻 Lint Test
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Run golangci-lint
|
|
uses: golangci/golangci-lint-action@v2
|
|
with:
|
|
version: latest
|
|
args: --timeout 5m
|
|
working-directory: v2/ |