Skip to content

Commit

Permalink
github action update
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliocalzolari committed Nov 15, 2021
1 parent 456c88e commit e6eacc6
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- **salesforce_timecard version:** e.g. 2.0.4
- **Python version:** e.g. 3.7.4 (output of the `python --version` command)
- **Operating system version:** e.g. Windows 10, Ubuntu 18.04, macOS 10.14.5
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: 'bug'
assignees: 'giuliocalzolari'

---

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

**To Reproduce**

```
[ Include a code snippet that produces your bug. Make it standalone, we should be able to run it. ]
[ Include a data sample or link to your data if necessary to run the code ]
```

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


**Additional context**
Add any other context about the problem here.

**Possible solutions**
List any solutions you may have come up with.

23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: 'feature'
assignees: 'giuliocalzolari'

---

**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.

**Implementation**
Can you help make a PR if we want to implement this feature?
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2

updates:
- package-ecosystem: pip
directory: /
schedule:
interval: weekly

- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
11 changes: 9 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
[tox]
isolated_build = true
envlist = py38
envlist = py{37,38,39}-{default,use_chardet_on_py3}
whitelist_externals = pytest




[testenv]
commands =
pytest --record-mode=none tests/test* -vv
setenv =
PYTHONDONTWRITEBYTECODE=1
PYTHONHASHSEED=0
PYTHONWARNINGS=ignore
PYTHONWARNINGS=ignore

[testenv:use_chardet_on_py3]
extras =
security
socks
use_chardet_on_py3

0 comments on commit e6eacc6

Please sign in to comment.