mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-24 19:45:41 +00:00
* misc update * chore(deps): bump github.com/gin-gonic/gin from 1.9.0 to 1.9.1 (#4252) Bumps [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) from 1.9.0 to 1.9.1. - [Release notes](https://github.com/gin-gonic/gin/releases) - [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md) - [Commits](https://github.com/gin-gonic/gin/compare/v1.9.0...v1.9.1) --- updated-dependencies: - dependency-name: github.com/gin-gonic/gin dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump github.com/docker/docker (#4316) Bumps [github.com/docker/docker](https://github.com/docker/docker) from 24.0.5+incompatible to 24.0.7+incompatible. - [Release notes](https://github.com/docker/docker/releases) - [Commits](https://github.com/docker/docker/compare/v24.0.5...v24.0.7) --- updated-dependencies: - dependency-name: github.com/docker/docker dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix README_CN.md typos (#4369) * version update * only testing on owners --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xc1Ym <xuedongyuming2233@gmail.com>
36 lines
827 B
YAML
36 lines
827 B
YAML
name: 🔨 Performance Test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Weekly
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
build:
|
|
name: Test Performance
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.21.x]
|
|
os: [ubuntu-latest, macOS-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
if: github.repository == 'projectdiscovery/nuclei'
|
|
steps:
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Go Mod hygine
|
|
run: |
|
|
go clean -modcache
|
|
go mod tidy
|
|
|
|
# Max GH exection time 6H => timeout after that
|
|
- name: Running performance with big list
|
|
run: go run -race . -l ../functional-test/targets-150.txt
|
|
working-directory: cmd/nuclei/ |