Skip to content

Add README.md

Add README.md #2

Workflow file for this run

name: Go Test on Push
on:
push:
branches:
- master
paths:
- "*/**"
- "*.go"
- go.*
- "!.github/**"
- "!tmp/**"
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "stable"
- name: Test
run: go test -json ./... > test.json
env:
GOPRIVATE: github.com/inquisico
- name: Annotate tests
if: always()
uses: guyarb/[email protected]
with:
test-results: test.json