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

26 lines
375 B
YAML
Raw Normal View History

2022-05-15 05:27:51 -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
2022-05-15 05:30:48 -07:00
run: go build -buildmode=plugin -v ./...
2022-05-15 05:27:51 -07:00
- name: Test
run: go test -v ./...