Skip to content

Allow splitting of CSV file if it is larger than 10MB #105

Allow splitting of CSV file if it is larger than 10MB

Allow splitting of CSV file if it is larger than 10MB #105

Workflow file for this run

name: no-cheat
on:
pull_request:
types: [opened, synchronize]
jobs:
no-pylint-disable:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
- name: Verify no lint is disabled in the new code
run: |
NEW_CODE=$(git diff origin/main..$(git branch --show-current) | grep -e '^+')
CHEAT=$(echo "${NEW_CODE}" | grep '# pylint: disable' | grep -v "CHEAT" | wc -c)
if [ "${CHEAT}" -ne 0 ]; then
echo "Do not cheat the linter: ${CHEAT}"
exit 1
fi