fix: add whitespace collapsing and text stripping by default #35
Workflow file for this run
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
# [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() |