Skip to content

Updated JQuery version #97

Updated JQuery version

Updated JQuery version #97

Workflow file for this run

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