diff --git a/.forgejo/workflows/style.yaml b/.forgejo/workflows/style.yaml deleted file mode 100644 index b98d044..0000000 --- a/.forgejo/workflows/style.yaml +++ /dev/null @@ -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 . diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9d5f208..54b06ef 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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.