Skip to content

Update project structure and workflows #1

Update project structure and workflows

Update project structure and workflows #1

Workflow file for this run

name: Go Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.1
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Run tests
run: go test -v ./tests