Files
gitlab.nvim/.github/workflows/go.yaml
Harrison (Harry) Cramer 231972607d Only run go build action on pull requests (#104)
Bumps to #major release tag
2023-11-16 21:06:43 -05:00

19 lines
314 B
YAML

name: Go
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
- name: Build
run: make compile
- name: Test
run: make test