Add an operator != in podio::ObjectID #884
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: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cvmfs-contrib/github-action-cvmfs@v3 | |
- uses: aidasoft/run-lcg-view@v4 | |
with: | |
container: centos7 | |
view-path: /cvmfs/sw-nightlies.hsf.org/key4hep | |
run: | | |
echo "::group::Setup pre-commit" | |
export PATH=/root/.local/bin:$PATH | |
# Newer versions of git are more cautious around the github runner | |
# environment and without this git rev-parse --show-cdup in pre-commit | |
# fails | |
git config --global --add safe.directory $(pwd) | |
pip install pre-commit | |
pip install pylint==2.12.2 | |
pip install flake8 | |
echo "::endgroup::" | |
echo "::group::Run CMake" | |
mkdir build | |
cd build | |
cmake .. -DENABLE_SIO=ON \ | |
-DENABLE_RNTUPLE=ON \ | |
-DCMAKE_CXX_STANDARD=17 \ | |
-DCMAKE_CXX_FLAGS=" -fdiagnostics-color=always -Werror "\ | |
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ | |
-DUSE_EXTERNAL_CATCH2=OFF | |
ln -s $(pwd)/compile_commands.json ../ | |
cd .. | |
echo "::endgroup::" | |
echo "::group::Run pre-commit" | |
pre-commit run --show-diff-on-failure \ | |
--color=always \ | |
--all-files | |
echo "::endgroup::" |