Skip to content

chore(deps): bump github.com/projectdiscovery/ratelimit from 0.0.6 to 0.0.38 #263

chore(deps): bump github.com/projectdiscovery/ratelimit from 0.0.6 to 0.0.38

chore(deps): bump github.com/projectdiscovery/ratelimit from 0.0.6 to 0.0.38 #263

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-12]
go-version: [1.21.x]
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build .
working-directory: cmd/chaos/
- name: Test
run: go test ./...
working-directory: .