Skip to content

Bump golang.org/x/net in the gomod group across 1 directory (#552) #632

Bump golang.org/x/net in the gomod group across 1 directory (#552)

Bump golang.org/x/net in the gomod group across 1 directory (#552) #632

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.6
- name: Install Go
uses: actions/setup-go@v5.0.1
with:
go-version-file: 'go.mod'
- name: Run linters
uses: golangci/golangci-lint-action@v6
with:
version: "v1.58"
test:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v4.1.6
- name: Install Go
if: success()
uses: actions/setup-go@v5.0.1
with:
go-version-file: 'go.mod'
- run: go test -race ./...
- run: go test -fuzz=. -fuzztime=30s
- run: go test -fuzz=Plain -fuzztime=30s ./internal/charset
- run: go test -fuzz=XML -fuzztime=30s ./internal/charset
- run: go test -fuzz=HTML -fuzztime=30s ./internal/charset