Skip to content

fix: add whitespace collapsing and text stripping by default #35

fix: add whitespace collapsing and text stripping by default

fix: add whitespace collapsing and text stripping by default #35

Workflow file for this run

# [install the GitHub Application on the relevant repositories](https://github.com/apps/pre-commit-ci-lite/installations/new)
name: Run pre-commit.ci lite
on:
pull_request:
push:
branches: [main]
jobs:
main:
# note: the step must have either the default name or contain the text
# pre-commit-ci-lite. the application uses this to find the right workflow.
# [pre-commit.ci lite](https://pre-commit.ci/lite.html)
name: pre-commit-ci-lite
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
token: ${{ secrets.SGILE_PAT }}
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies and package
run: |
pip install -r requirements.dev.txt
pip install pydantic
- name: File changes
uses: trilom/[email protected]
id: file_changes
with:
prNumber: ${{ github.event.number }}
output: " "
- name: pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --files ${{ steps.file_changes.outputs.files }}
- name: Pre commit lite
uses: pre-commit-ci/[email protected]
if: always()