ci(actions): master branch build and test

This commit is contained in:
iyear 2022-09-04 19:27:07 +08:00
parent 51290f2268
commit 50be06c8a4

25
.github/workflows/master.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: master builder
on:
push:
branches: [ master ]
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- '.github/workflows/*.yml'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Golang env
uses: actions/setup-go@v3
with:
go-version: 1.18
cache: true
- name: Test
run: go test -v ./...
- name: Build
run: go build