Skip to content

Remove Roadmap and Contributing section; add note about inactive proj… #92

Remove Roadmap and Contributing section; add note about inactive proj…

Remove Roadmap and Contributing section; add note about inactive proj… #92

Workflow file for this run

name: Go test
on:
push:
branches:
- "master"
- "ci"
pull_request:
branches:
- "master"
jobs:
go-test:
name: Go test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.18.1'
- name: Check formatting
run: test -z $(gofmt -l .)
- name: Run tests
run: go test ./...