Skip to content

Commit

Permalink
Merge pull request #3 from guimatheus92/users/guimatheus92/v1.2
Browse files Browse the repository at this point in the history
feat: users/guimatheus92/v1.2
  • Loading branch information
guimatheus92 authored Jul 9, 2024
2 parents 7956e66 + 5ad0e5a commit 770c547
Show file tree
Hide file tree
Showing 9 changed files with 162 additions and 8,606 deletions.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: :bug: Bug report
about: Create a report to help us improve
title: '[bug]: '
labels: bug
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.

**Additional context**
Add any other context about the problem here.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
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: :bulb: Feature request
about: Suggest an idea for this project
title: '[feat]: '
labels: enhancement
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.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/general_question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: :open_book: General question
about: Ask a question regarding this project
title: '[q&a]: '
labels: question
assignees: ''

---

**Question**
A clear and concise question. Ex. How do I [...]?

**Additional context**
Add any other context or screenshots about the question here.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Python application

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ created ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# App
node_red_flow.json

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
Loading

0 comments on commit 770c547

Please sign in to comment.