Skip to content

Commit

Permalink
Merge pull request #3 from godzillaframework/circleci-project-setup
Browse files Browse the repository at this point in the history
circleci
  • Loading branch information
krishpranav authored Dec 6, 2021
2 parents 6616ff4 + df331e0 commit d506633
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: 2.1

jobs:
build:
working_directory: ~/repo

docker:
- image: circleci/golang:1.15.8

steps:
- checkout
- restore_cache:
keys:
- go-mod-v4-{{ checksum "go.sum" }}
- run:
name: Install Dependencies
command: go mod download
- save_cache:
key: go-mod-v4-{{ checksum "go.sum" }}
paths:
- "/go/pkg/mod"
- run:
name: Run tests
command: |
mkdir -p /tmp/test-reports
gotestsum --junitfile /tmp/test-reports/unit-tests.xml
- store_test_results:
path: /tmp/test-reports

workflows:
workflowbuild:
jobs:
- build

0 comments on commit d506633

Please sign in to comment.