29 lines
667 B
YAML
29 lines
667 B
YAML
name: 🛠 Template Validate
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**.yaml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.20.x
|
|
|
|
- name: nuclei install
|
|
run: go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest
|
|
|
|
- name: Template Validation
|
|
run: |
|
|
cp -r ${{ github.workspace }} $HOME
|
|
nuclei -duc -validate -allow-local-file-access
|
|
nuclei -duc -validate -w ./workflows -allow-local-file-access |