Skip to content

go1.20, codeowners & GH workflow #1

go1.20, codeowners & GH workflow

go1.20, codeowners & GH workflow #1

Workflow file for this run

---
name: ci
on:
pull_request:
jobs:
ci_job:
name: test
runs-on: ubuntu-22.04
container:
image: golang:1.20
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test
run: go test -count=1 -v -short -race -timeout 30s ./...