diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..2409d261 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,37 @@ +--- +name: Bug Report +about: Report a bug in Harlequin. +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Actual behavior** +A clear and concise description of what happened; please include screenshots or animated gifs of Harlequin if possible. + +**Additional context** +What is the output of `harlequin --version`? + +What database adapter are you using with Harlequin? (Default is DuckDB) + +Can you tell us more about your system? +- Shell: +- Terminal: +- OS of the shell: +- OS of the terminal (if different from the shell): + +For example, for my system, these are: +- Bash +- Windows Terminal +- Ubuntu 22.04 / WSL2 +- Windows 11 \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cf7a39fb..c590bee0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,11 +1,10 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - version: 2 updates: - package-ecosystem: "pip" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "daily" + interval: "monthly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" diff --git a/Makefile b/Makefile index 535a4a2b..284bca0f 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ .PHONY: check check: black . - pytest -m "not online" ruff . --fix + pytest -m "not online" mypy .PHONY: lint