23 lines
370 B
YAML
23 lines
370 B
YAML
name: Go Test
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
test:
|
|
env:
|
|
RUNNER_TOOL_CACHE: /toolcache
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: ./go.mod
|
|
cache: true
|
|
|
|
- name: Run tests
|
|
run: go test ./... |