mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-26 20:16:21 +00:00
* If the tests are executed through GitHub actions and there are failed integration tests, they will be re-executed with verbose output to help figuring out the underlying issues. * Added some grouping to make reading the logs easier Ticket: #1365
27 lines
510 B
YAML
27 lines
510 B
YAML
name: 🧪 Functional Test
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
functional:
|
|
name: Functional Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Functional Tests
|
|
env:
|
|
GH_ACTION: true
|
|
run: |
|
|
chmod +x run.sh
|
|
bash run.sh
|
|
working-directory: v2/cmd/functional-test |