Compare commits
No commits in common. "4afbebcf4a9bc0f0844834706b00060ca2c04c87" and "8845a6b4087a418b80f46637bd740396e092e319" have entirely different histories.
4afbebcf4a
...
8845a6b408
|
@ -1,23 +0,0 @@
|
|||
# Links & Resources:
|
||||
# - https://hatch.pypa.io/latest/install/#github-actions
|
||||
# - https://docs.astral.sh/ruff/integrations/#github-actions
|
||||
# - https://black.readthedocs.io/en/stable/integrations/github_actions.html
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
ruff:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Hatch
|
||||
uses: https://github.com/pypa/hatch@install
|
||||
- name: Run Ruff
|
||||
run: hatch run lint:ruff check --output-format=github .
|
||||
black:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Hatch
|
||||
uses: https://github.com/pypa/hatch@install
|
||||
- name: Run Black
|
||||
run: hatch run lint:black --check --diff .
|
|
@ -21,7 +21,6 @@ The `tag` should be one of the following:
|
|||
- `test` - for adding or correcting tests
|
||||
- `style` - for changes to the linter or formatter configuration and its results
|
||||
- `docs` - for changes to documentation only
|
||||
- `ci` - for changes to the CI and its configuration
|
||||
- `other` - for anything that isn't covered by the tags above
|
||||
|
||||
If a change is a breaking change then that should be indicated by adding a `!` after the tag.
|
||||
|
|
Loading…
Reference in a new issue