config.yml 344 Bytes
Newer Older
Steven Allen's avatar
Steven Allen committed
1 2
version: 2.1
orbs:
Steven Allen's avatar
Steven Allen committed
3
  ci-go: ipfs/ci-go@0.2.1
Will Scott's avatar
Will Scott committed
4 5 6 7 8 9 10 11 12 13
  win: circleci/windows@2.4.0

jobs:
  "windows-test":
    executor: win/default
    steps:
      - checkout
      - run:
          name: "Go test"
          command: go test .
Steven Allen's avatar
Steven Allen committed
14 15 16 17 18 19 20 21

workflows:
  version: 2
  test:
    jobs:
      - ci-go/build
      - ci-go/lint
      - ci-go/test
Will Scott's avatar
Will Scott committed
22
      - windows-test