mirror of
https://github.com/taigrr/godns
synced 2025-01-18 04:03:25 -08:00
21 lines
353 B
YAML
21 lines
353 B
YAML
name: Go
|
|
on: [push]
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Set up Go 1.15.7
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.15.7
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Build
|
|
run: cd cmd/godns && go build -v .
|