Skip to content

chore(deps): bump github.com/projectdiscovery/goflags from 0.1.52 to 0.1.53 #204

chore(deps): bump github.com/projectdiscovery/goflags from 0.1.52 to 0.1.53

chore(deps): bump github.com/projectdiscovery/goflags from 0.1.52 to 0.1.53 #204

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:
go-version: [1.21.x]
os: [ubuntu-latest, windows-latest, macOS-12]
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code
uses: actions/checkout@v4
- name: Build
run: go build .
working-directory: cmd/cloudlist/
- name: Test
run: go test .
working-directory: cmd/cloudlist/
- name: Race Condition Tests
run: go build -race .
working-directory: cmd/cloudlist/