26 lines
373 B
YAML
26 lines
373 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.22
|
|
|
|
- name: Build
|
|
run: go build -o load-watcher main.go
|
|
|
|
- name: Test
|
|
run: go test ./...
|