Skip to content

Commit fb71118

Browse files
authored
Merge pull request #6 from divshekhar/main
Github workflow
2 parents 45f7512 + c5483bf commit fb71118

File tree

5 files changed

+104
-0
lines changed

5 files changed

+104
-0
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Every request must be reviewed and accepted by:
2+
3+
* @4-alok
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
Steps to reproduce the behavior:
12+
1. Go to '...'
13+
2. Click on '....'
14+
3. Scroll down to '....'
15+
4. See error
16+
17+
**Expected behavior**
18+
A clear and concise description of what you expected to happen.
19+
20+
**Screenshots**
21+
If applicable, add screenshots to help explain your problem.
22+
23+
**Logs **
24+
Run `flutter analyze` and attach any output of that command below.
25+
If there are any analysis errors, try resolving them before filing this issue.
26+
27+
Paste the output of running `flutter doctor -v` here.
28+
29+
**Additional context**
30+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
A clear and concise description of what the problem is.
9+
10+
**Describe the solution you'd like**
11+
A clear and concise description of what you want to happen.
12+
13+
**Describe alternatives you've considered**
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!--
2+
Thanks for contributing!
3+
4+
Provide a description of your changes below and a general summary in the title
5+
6+
Please look at the following checklist to ensure that your PR can be accepted quickly:
7+
-->
8+
9+
## Status
10+
11+
**READY/IN DEVELOPMENT/HOLD**
12+
13+
## Breaking Changes
14+
15+
YES | NO
16+
17+
## Description
18+
19+
<!--- Describe your changes in detail -->
20+
21+
## Type of Change
22+
23+
<!--- Put an `x` in all the boxes that apply: -->
24+
25+
- [ ] ✨ New feature (non-breaking change which adds functionality)
26+
- [ ] 🛠️ Bug fix (non-breaking change which fixes an issue)
27+
- [ ] ❌ Breaking change (fix or feature that would cause existing functionality to change)
28+
- [ ] 🧹 Code refactor
29+
- [ ] ✅ Build configuration change
30+
- [ ] 📝 Documentation
31+
- [ ] 🗑️ Chore

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
# Setup the flutter environment.
14+
- uses: subosito/flutter-action@v1.5.3
15+
16+
- name: Install Dependencies
17+
run: flutter packages get
18+
19+
- name: Format
20+
run: flutter format --set-exit-if-changed lib
21+
22+
- name: Analyze
23+
run: flutter analyze --no-pub

0 commit comments

Comments
 (0)