generated from dbt-labs/dbt-oss-template
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* commit to hatch * fix files but it doesnt match pre-commit * update config * more reformatting * fixing mypy * fixing types * fix linting, still some pending ignored errors * fix testing errors * type fixing, hatch updates * more hatch setup * fix test command in ci * fix test command in ci * update contributing doc * remove ard in favor of #28 * move around hatch envs * fix CI * Update CONTRIBUTING.md * fix merge conflict issues * pre-commit settings * fix pre-commit * split up pre-commit linting * remove extra version declaration * remove ruff, reorganize * fux build env * remove ruff * move around how env are defined so we can drop into a shell * dep cleanup * remove extra line * review changes * centralize python/hatch install * fix action name * fix step name
- Loading branch information
Showing
77 changed files
with
1,988 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Setup Python env | ||
description: Install Python & Hatch | ||
inputs: | ||
python-version: | ||
description: 'Version of Python to Install' | ||
required: true | ||
default: '3.9' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: "Set up Python ${{ inputs.python-version }}" | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "${{ inputs.python-version }}" | ||
|
||
- name: Install Hatch | ||
shell: bash | ||
run: | | ||
python -m pip install --user --upgrade pip | ||
python -m pip install hatch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.