Bump the github-actions group with 4 updates #476
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: Run Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: "1.18.x" | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Run linters | |
uses: golangci/[email protected] | |
with: | |
version: "v1.45.2" | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install Go | |
if: success() | |
uses: actions/[email protected] | |
with: | |
go-version: "1.18.x" | |
- name: Checkout code | |
uses: actions/[email protected] | |
- 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 | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Go | |
if: success() | |
uses: actions/[email protected] | |
with: | |
go-version: "1.18.x" | |
- name: Generate coverage | |
run: go test -race -covermode=atomic -coverprofile=coverage.out | |
- uses: codecov/[email protected] | |
with: | |
files: ./coverage.out |