Skip to content

Commit

Permalink
Merge pull request #421 from CircleCI-Public/skip-update-check-ci
Browse files Browse the repository at this point in the history
Add Windows CI job
  • Loading branch information
marcomorain authored May 23, 2020
2 parents 5b80b52 + f29152e commit 62c3d9e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ orbs:
codecov: circleci/[email protected]
shellcheck: circleci/[email protected]
slack: circleci/[email protected]
windows: circleci/[email protected]

executors:
go:
Expand Down Expand Up @@ -89,6 +90,21 @@ commands:
only_for_branch: "master"

jobs:
test_windows:
executor: windows/default
steps:
- checkout
- run: setx GOPATH %USERPROFILE%\go
- run: go get gotest.tools/gotestsum
- run: mkdir test_results
- run:
name: Run tests
command: |
C:\Users\circleci\go\bin\gotestsum.exe --junitfile test_results/windows.xml
- store_test_results:
path: test_results
- store_artifacts:
path: test_results
test_mac:
executor: mac
steps:
Expand Down Expand Up @@ -287,6 +303,7 @@ workflows:
exclude: ./vendor/*
- test
- test_mac
- test_windows
- coverage
- lint
- deploy-test
Expand Down

0 comments on commit 62c3d9e

Please sign in to comment.