Skip to content

chore(deps): bump github.com/microcosm-cc/bluemonday from 1.0.24 to 1.0.25 #1756

chore(deps): bump github.com/microcosm-cc/bluemonday from 1.0.24 to 1.0.25

chore(deps): bump github.com/microcosm-cc/bluemonday from 1.0.24 to 1.0.25 #1756

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.20.x
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build .
working-directory: cmd/httpx/
- name: Test
run: go test ./...
working-directory: .
- name: Running example
run: go run .
working-directory: examples/
- name: Integration Tests Linux, macOS
if: runner.os == 'Linux' || runner.os == 'macOS'
env:
GH_ACTION: true
run: bash run.sh
working-directory: integration_tests/
- name: Integration Tests Windows
if: runner.os == 'Windows'
env:
GH_ACTION: true
MSYS_NO_PATHCONV: true
run: bash run.sh
working-directory: integration_tests/
- name: Race Condition Tests
run: go build -race .
working-directory: cmd/httpx/
- name: release test
uses: goreleaser/goreleaser-action@v4
with:
args: "release --clean --snapshot"
version: latest
workdir: .