Updated JQuery version #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
go-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.16.3' | |
- name: Setup GraphViz | |
uses: ts-graphviz/setup-graphviz@v1 | |
- name: Install dependencies | |
run: | | |
go version | |
go get -u golang.org/x/lint/golint | |
- name: Run build | |
run: | | |
go build | |
cd core | |
go build | |
cd ../util | |
go build | |
- name: Run vet & lint | |
run: | | |
go vet | |
golint | |
cd core | |
go vet | |
golint | |
cd ../util | |
go vet | |
golint | |
cd ../test | |
go vet | |
golint | |
- name: Run testing | |
run: cd test && go test dfalearningtoolkit_test.go -v -timeout 30m |