Add patching of LCIO event content to avoid podio crashing on inconsistencies. #138
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: [push, pull_request] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cvmfs-contrib/github-action-cvmfs@v3.1 | |
- uses: aidasoft/run-lcg-view@v4 | |
with: | |
release-platform: LCG_101/x86_64-centos7-clang12-opt | |
run: | | |
export PYTHONPATH=$(python -m site --user-site):$PYTHONPATH | |
export PATH=/root/.local/bin:$PATH | |
pip install --upgrade --user pip | |
pip install pre-commit --user | |
# Use virtualenv from the LCG release | |
pip uninstall --yes virtualenv | |
pre-commit run --show-diff-on-failure \ | |
--color=always \ | |
--all-files |