diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 74ccc30..4c413cf 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -24,6 +24,8 @@ jobs: - name: Build run: go build . working-directory: cmd/httpx/ + env: + GOPRIVATE: "github.com/projectdiscovery" - name: Test run: go test ./... diff --git a/.github/workflows/functional-test.yml b/.github/workflows/functional-test.yml index 841226c..c0f843c 100644 --- a/.github/workflows/functional-test.yml +++ b/.github/workflows/functional-test.yml @@ -25,3 +25,5 @@ jobs: chmod +x run.sh bash run.sh ${{ matrix.os }} working-directory: cmd/functional-test + env: + GOPRIVATE: "github.com/projectdiscovery" diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index d8b1dbc..577f8b9 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -20,4 +20,6 @@ jobs: with: version: latest args: --timeout 5m - working-directory: . \ No newline at end of file + working-directory: . + env: + GOPRIVATE: "github.com/projectdiscovery"