Files
base-cli-plugin/.github/workflows/go.yml
Christian Dupuis a6aaee0dbb Initial commit
Signed-off-by: Christian Dupuis <cd@atomist.com>
2022-09-16 13:02:38 +02:00

26 lines
349 B
YAML

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.19
- name: Build
run: go build -v
- name: Test
run: go test -v