WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

chore(deps): bump github.com/projectdiscovery/fastdialer from 0.4.17 to 0.4.19 #2167

chore(deps): bump github.com/projectdiscovery/fastdialer from 0.4.17 to 0.4.19

chore(deps): bump github.com/projectdiscovery/fastdialer from 0.4.17 to 0.4.19 #2167

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: .
- name: Test
run: go test ./...
working-directory: .
# Todo
# - name: Integration Tests
# env:
# GH_ACTION: true
# run: bash run.sh
# working-directory: integration_tests/
- name: Race Condition Tests
run: go build -race ./...
working-directory: .
- name: Example Code Tests
run: go build .
working-directory: examples/