mirror of
https://github.com/wweir/sower.git
synced 2024-04-21 12:42:15 +00:00
19 lines
289 B
YAML
19 lines
289 B
YAML
name: Go
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.17
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: test and build
|
|
run: |
|
|
make
|