1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-06-05 07:40:24 +08:00

Create build.yml

Action to test and build
This commit is contained in:
Gonzalo Fernández-Victorio
2021-05-17 20:10:39 +01:00
committed by GitHub
parent c74b2f0561
commit d8f39cecf1

25
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Go
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.16
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...