Skip to content

feat(ci): Add workflow to run tests #1

feat(ci): Add workflow to run tests

feat(ci): Add workflow to run tests #1

Workflow file for this run

---
on:
push:
branches: ["main"]
pull_request:
jobs:
go-test:
name: Run go test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test
run: go test