mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-24 20:45:25 +00:00
22 lines
411 B
YAML
22 lines
411 B
YAML
name: 🧪 Functional Test
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
build:
|
|
name: Functional Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15
|
|
|
|
- name: Functional Tests
|
|
run: |
|
|
cd "${GITHUB_WORKSPACE}/v2/cmd/functional-test/"
|
|
chmod +x run.sh
|
|
bash run.sh |