File tree 4 files changed +19
-31
lines changed
4 files changed +19
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ on : [push, pull_request]
2
+ name : Build
3
+ jobs :
4
+ test :
5
+ strategy :
6
+ matrix :
7
+ go-version : [1.19.x]
8
+ os : [ubuntu-latest, macos-latest, windows-latest]
9
+ runs-on : ${{ matrix.os }}
10
+ steps :
11
+ - name : Install Go
12
+ uses : actions/setup-go@v2
13
+ with :
14
+ go-version : ${{ matrix.go-version }}
15
+ - name : Checkout code
16
+ uses : actions/checkout@v2
17
+ - name : Build
18
+ run : go build ./...
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
## aac-go
2
- [ ![ TravisCI Build Status] ( https://travis-ci.org/gen2brain/aac-go.svg?branch=master )] ( https://travis-ci.org/gen2brain/aac-go )
3
- [ ![ AppVeyor Build Status] ( https://ci.appveyor.com/api/projects/status/cig800cju43dbn8u?svg=true )] ( https://ci.appveyor.com/project/gen2brain/aac-go )
2
+ [ ![ Build Status] ( https://github.com/gen2brain/aac-go/actions/workflows/build.yml/badge.svg )] ( https://github.com/gen2brain/aac-go/actions )
4
3
[ ![ GoDoc] ( https://godoc.org/github.com/gen2brain/aac-go?status.svg )] ( https://godoc.org/github.com/gen2brain/aac-go )
5
4
[ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/gen2brain/aac-go?branch=master )] ( https://goreportcard.com/report/github.com/gen2brain/aac-go )
6
5
You can’t perform that action at this time.
0 commit comments