Make the conversion script exit early if include statements are found in the XML inputs #70
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-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cvmfs-contrib/[email protected] | |
- name: Run pre-commit | |
run: | | |
source /cvmfs/sw-nightlies.hsf.org/key4hep/setup.sh | |
cd ${GITHUB_WORKSPACE} | |
pre-commit run --show-diff-on-failure \ | |
--color=always \ | |
--all-files |