mt-multiserver-proxy/.github/workflows/go.yml

26 lines
357 B
YAML
Raw Permalink Normal View History

2022-05-15 04:50:34 -07:00
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...