mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-25 21:15:29 +00:00
* added logs for debug * fixes * removed logs * using cache item * implemented multiple tests * fixed some unit tests * implemented test for skipping * added multiple tests together * added mark failed * fix on tests * better test implementation + concurrent * fix: fixes on concurrent tests * removed parallel and 1 unit test DOCS: by default the command go test runs in parallel tests for different packages, and default is the number of CPUs available (see go help build) * fixes on go routine * increasing parallelism of once.Do * bumping go to 1.19 for atomic types support * removing redundant check + fixing test concurrency on create Co-authored-by: Mzack9999 <mzack9999@protonmail.com> Co-authored-by: mzack <marco.rivoli.nvh@gmail.com>
48 lines
1.5 KiB
YAML
48 lines
1.5 KiB
YAML
name: ⏰ Publish Docs
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**.go'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: "Set up Go"
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19
|
|
|
|
- name: Generate YAML Syntax Documentation
|
|
id: generate-docs
|
|
run: |
|
|
if ! which dstdocgen > /dev/null; then
|
|
echo -e "Command dstdocgen not found! Installing\c"
|
|
go install github.com/projectdiscovery/yamldoc-go/cmd/docgen/dstdocgen@main
|
|
fi
|
|
go generate pkg/templates/templates.go
|
|
go build -o "cmd/docgen/docgen" cmd/docgen/docgen.go
|
|
./cmd/docgen/docgen ../SYNTAX-REFERENCE.md ../nuclei-jsonschema.json
|
|
git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT
|
|
working-directory: v2
|
|
|
|
- name: Commit files
|
|
if: steps.generate-docs.outputs.CHANGES > 0
|
|
run: |
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "GitHub Action"
|
|
git add SYNTAX-REFERENCE.md nuclei-jsonschema.json
|
|
git commit -m "Auto Generate Syntax Docs + JSONSchema [$(date)] :robot:" -a
|
|
|
|
- name: Push changes
|
|
if: steps.generate-docs.outputs.CHANGES > 0
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }} |