mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-24 22:15:25 +00:00
* adding interact keepalive + improving init logic * dep update * go version update * readme update * version bump * fixing invalid format --------- Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io> Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
23 lines
458 B
YAML
23 lines
458 B
YAML
name: 🛠 Template Validate
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**.go'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest-16-cores
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.20.x
|
|
|
|
- name: Template Validation
|
|
run: |
|
|
go run . -ut
|
|
go run . -validate
|
|
go run . -validate -w workflows
|
|
working-directory: v2/cmd/nuclei/ |