remove blanks at location which might cause errors when reading csv with LibreOffice #848
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
name: pre-commit | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.2.0 | |
- name: Install Python | |
uses: actions/setup-python@v4.4.0 | |
with: | |
python-version: '3.8' | |
- name: Run pre-commit checks | |
uses: pre-commit/action@v3.0.0 |