zenity/.github/workflows/go.yml

28 lines
407 B
YAML
Raw Normal View History

2021-07-28 10:00:38 -04:00
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
2022-03-24 12:02:19 -04:00
workflow_dispatch:
branches: [ master ]
2021-07-28 10:00:38 -04:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
2022-03-24 12:02:19 -04:00
go-version: 1.17
2021-07-28 10:00:38 -04:00
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...