Skip to content

Commit

Permalink
Add ci-test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
thallgren committed Jan 22, 2020
1 parent 23b1c2d commit 2d10373
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/dgo_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Dgo Test
on: [push, pull_request]
jobs:

build:
name: Test
test:
name: Test Linux
runs-on: ubuntu-latest
steps:

Expand Down Expand Up @@ -35,3 +35,20 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-profile: coverage.tmp

test-windows:
name: Test Windows
runs-on: windows-latest
steps:

- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Test
run: go test -v ./...

0 comments on commit 2d10373

Please sign in to comment.