Skip to content

gh actions: update to latest versions #12

gh actions: update to latest versions

gh actions: update to latest versions #12

Workflow file for this run

name: tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Go version
run: go version
- name: Tests
run: go test -v ./...
- name: Race conditions
run: go test -race -v ./...