Skip to content

Commit

Permalink
Revert "chore: delete .circleci folder (#699)" (#705)
Browse files Browse the repository at this point in the history
This reverts commit 2eea63b since CircleCI is still used here.
  • Loading branch information
kevgo committed Sep 22, 2022
1 parent 08c976b commit ef753d5
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,39 @@
version: 2.1

orbs:
changelog: ory/changelog@0.1.4
nancy: ory/nancy@0.0.13
golangci: ory/golangci@0.0.19

jobs:
test:
docker:
- image: cimg/go:1.18
steps:
- checkout
- setup_remote_docker
- restore_cache:
keys:
- go-github-ory-fosite-v2-{{ checksum "go.sum" }}
- run: go mod download
- save_cache:
key: go-github-ory-fosite-v2-{{ checksum "go.sum" }}
paths:
- "/go/pkg/mod"
- run: go install github.com/mattn/goveralls github.com/ory/go-acc
- run: go-acc -o coverage.txt ./... -- -v -failfast -timeout=20m

workflows:
tbr:
jobs:
- nancy/test
- test
- golangci/lint
- changelog/generate:
requires:
- test
filters:
tags:
only: /.*/
branches:
only: master

0 comments on commit ef753d5

Please sign in to comment.