go-sleep/.github/workflows/go.yml

28 lines
449 B
YAML
Raw Normal View History

2021-12-15 12:00:46 +00:00
# SPDX-FileCopyrightText: 2021 Eric Neidhardt
# SPDX-License-Identifier: CC0-1.0
2020-08-10 18:59:53 +00:00
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
2021-12-15 12:00:46 +00:00
- uses: actions/checkout@v2
2020-08-10 18:59:53 +00:00
2021-12-15 12:00:46 +00:00
- name: Set up Go
2020-08-10 18:59:53 +00:00
uses: actions/setup-go@v2
with:
2021-12-15 12:00:46 +00:00
go-version: 1.17
2020-08-10 18:59:53 +00:00
- name: Build
2020-08-10 19:02:28 +00:00
run: go build -v ./cmd/sleep/
2020-08-10 18:59:53 +00:00
- name: Test
2020-08-10 19:02:28 +00:00
run: go test -v ./...