yoyo-project/yoyo

View on GitHub
.circleci/config.yml

Summary

Maintainability
Test Coverage
version: 2.1
orbs:
  codecov: codecov/codecov@1.0.5
jobs:
  test:
    working_directory: ~
    docker:
      - image: circleci/golang:1.15
    steps:
      - checkout
      - run:
          name: Run Tests
          command: go test ./... --coverprofile=coverage.txt
      - codecov/upload:
          file: coverage.txt
workflows:
  version: 2.1
  workflow:
    jobs:
      - test