Skip to content

✨ Migrate project metadata to pyproject.toml and add pixi support (#120) #297

✨ Migrate project metadata to pyproject.toml and add pixi support (#120)

✨ Migrate project metadata to pyproject.toml and add pixi support (#120) #297

Workflow file for this run

name: python Workflow
on:
push:
branches:
- main
pull_request:
jobs:
check-style:
name: Find Trailing Whitespace
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Find Trailing Whitespace
run: |
set +e
lines=$(git grep --cached -In '[[:blank:]]$')
if [ ! -z "$lines" ]; then
echo -e "\n The following lines contain trailing whitespace: \n"
echo -e "${lines}"
echo -e "\nFailed.\n"
exit 1
fi
exit 0