chore(deps): bump github.com/projectdiscovery/fastdialer from 0.5.8 to 0.5.13 #2335
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🔨 Build Test | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.go' | |
| - '**.mod' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Test Builds | |
| if: ${{ !endsWith(github.actor, '[bot]') }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: projectdiscovery/actions/setup/go@v1 | |
| - name: Build | |
| run: go build ./... | |
| working-directory: . | |
| - name: Test | |
| run: go test ./... | |
| working-directory: . | |
| - name: Race Condition Tests | |
| run: go build -race ./... | |
| working-directory: . | |
| - name: Example Code Tests | |
| run: go build . | |
| working-directory: examples/ |