Skip to content

chore(deps): bump github.com/projectdiscovery/fastdialer from 0.0.70 to 0.0.71 #1107

chore(deps): bump github.com/projectdiscovery/fastdialer from 0.0.70 to 0.0.71

chore(deps): bump github.com/projectdiscovery/fastdialer from 0.0.70 to 0.0.71 #1107

Workflow file for this run

name: 🔨 Build Test
on:
pull_request:
paths:
- '**.go'
- '**.mod'
workflow_dispatch:
jobs:
build:
name: Test Builds
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build .
working-directory: cmd/dnsx/
- name: Test
run: go test ./...
working-directory: .
env:
GH_ACTION: true
PDCP_API_KEY: "${{ secrets.PDCP_API_KEY }}"
- name: Integration Tests
env:
GH_ACTION: true
PDCP_API_KEY: "${{ secrets.PDCP_API_KEY }}"
run: bash run.sh
working-directory: integration_tests/
- name: Race Condition Tests
run: go run -race .
working-directory: cmd/dnsx/