do not fetch specific commit hash

This commit is contained in:
Axel Kohlmeyer
2024-08-22 16:37:35 -04:00
parent a204f8e69f
commit dc4e4988a9
2 changed files with 6 additions and 5 deletions

View File

@ -24,7 +24,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
show-progress: false
@ -69,4 +68,7 @@ jobs:
- name: Run Selected Regression Tests
shell: bash
run: |
git branch
git branch -r
git diff origin/develop..HEAD
python3 tools/regression-tests/get-quick-list.py

View File

@ -258,10 +258,9 @@ if __name__ == "__main__":
regex = make_regex(styles)
if regex:
inputs = get_examples_using_styles(regex, os.path.join(LAMMPS_DIR,'examples'))
print("Suggested inputs for testing:")
for inp in inputs:
print(inp)
print("Suggested inputs for testing:")
for inp in inputs:
print(inp)
print(type(make_regex(styles)))
print("Found changes to the following styles:")