echoip/.github/workflows/test.yaml

20 lines
267 B
YAML

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.18.x"
- name: Run tests
run: go test ./...