Skip to content

docker: add latest tag #13

docker: add latest tag

docker: add latest tag #13

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 ./...