[25743] trim code String from csv on import #701
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
name: pre_commit | |
on: | |
pull_request: | |
push: | |
branches-ignore: [ '3.6', '3.7', '3.8'] | |
jobs: | |
build: | |
name: Enforce-Eclipse-Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- uses: actions/setup-python@v2 | |
- uses: pre-commit/action@v2.0.3 | |
- run: pre-commit run --all-files | |
- run: pre-commit run --hook-stage manual enforce-eclipse-format --show-diff-on-failure --verbose --all-files |