chore(deps): bump github.com/projectdiscovery/hmap from 0.0.64 to 0.0.66 #909
Workflow file for this run
This file contains 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: | |
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: Test | |
run: go test ./... | |
- name: Race Condition Tests | |
if: ${{ matrix.os != 'windows-latest' }} # false positives in windows | |
run: go test -race ./... | |
- name: Fuzz File Read # fuzz tests need to be run separately | |
run: go test -fuzztime=10s -fuzz=FuzzSafeOpen -run "FuzzSafeOpen" ./file/... |