Skip to content

Commit

Permalink
Added CI setup and issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Sneed committed Apr 20, 2021
1 parent 7f9df84 commit 1752010
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
version: 2.1
jobs:
build_and_test:
macos:
xcode: "12.4.0"
steps:
- checkout
- run: swift build
#- run:
# name: Snyk
# command: curl -sL https://raw.githubusercontent.com/segmentio/snyk_helpers/master/initialization/snyk.sh | sh
# environment:
# SNYK_FAIL_ON: upgradable
# SNYK_SEVERITY_THRESHOLD: high

# Collect XML test results data to show in the UI, and save the same XML
# files under test-results folder in the Artifacts tab
- store_test_results:
path: test_output
- store_artifacts:
path: test_output
destination: scan-output
workflows:
version: 2
build_and_test:
jobs:
- build_and_test:
context: snyk

31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: triage
assignees: bsneed

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Do '...'
2. '....'
3. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Platform (please complete the following information):**
- Library Version in use: [e.g. 0.0.5]
- Platform being tested: [e.g. iOS]
- Integrations in use: [e.g. Firebase, Amplitude]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: triage
assignees: bsneed

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Purpose
_Describe the problem or feature in addition to a link to the issues._

## Approach
_How does this change address the problem?_

#### Open Questions and Pre-Merge TODOs
- [ ] Use github checklists. When solved, check the box and explain the answer.

## Learning
_Describe the research stage_

_Links to blog posts, patterns, libraries or addons used to solve this problem_

0 comments on commit 1752010

Please sign in to comment.