From 848411eae687c4c0cd4de592f1299876a687e85d Mon Sep 17 00:00:00 2001 From: Tyler Thompson Date: Mon, 2 Sep 2019 20:36:04 -0600 Subject: [PATCH] [master] - 'Add basic README, no need to worry about carthage support just yet and remove cocoapods install from travis build - TT' --- .github/ISSUE_TEMPLATE/bug_report.md | 30 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++++++ .../pull_request_template.md | 7 +++++ .travis.yml | 4 +-- README.md | 6 ++++ 5 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md create mode 100644 README.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..39ec22dfa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,30 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. 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. + +**Additional context** +Add any other context about the problem here. + - XCode Version: [e.g. XCode 10.2] + - CucumberSwift Version: [e.g. 2.1.24] + - Example Feature File (if applicable) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..bbcbbe7d6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**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. diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 000000000..4030f6fe7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,7 @@ +Fixes # + +## Proposed Changes + + - + - + - diff --git a/.travis.yml b/.travis.yml index e155f6a51..7b64979f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,9 @@ xcode_scheme: Workflow xcode_destination: platform=iOS Simulator,name=iPhone 8 if: tag IS blank before_install: -- gem install cocoapods && pod install --repo-update +- pod install --repo-update deploy: provider: script - script: carthage build --no-skip-current && ./deploy_pod.sh + script: ./deploy_pod.sh on: branch: master diff --git a/README.md b/README.md new file mode 100644 index 000000000..ed644df34 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +![Build Status](https://img.shields.io/travis/com/Tyler-Keith-Thompson/Workflow.svg?style=popout) ![Pod Platform](https://img.shields.io/cocoapods/p/DynamicWorkflow.svg?style=popout) ![Pod Version](https://img.shields.io/cocoapods/v/DynamicWorkflow.svg?style=popout) + +### Welcome to Workflow! +Workflow is a library meant to handle complex user flows in iOS applications. + +MORE DETAIL TO COME SOON