Skip to content

build: bump version to 1.4.1 #128

build: bump version to 1.4.1

build: bump version to 1.4.1 #128

Workflow file for this run

name: Run tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
audit-and-run-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: "1.22.x"
- name: Install dependencies
run: go get .
- name: Run fmt
run: go fmt ./...
- name: Run vet
run: go vet ./...
- name: Run tests
run: go test -race -shuffle=on ./...