Skip to content

Commit 8c5ba55

Browse files
committed
Fix branch name check
1 parent e001819 commit 8c5ba55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ jobs:
5151
- name: Run and profile workflow
5252
run: |
5353
branch_name="${{ github.ref_name }}"
54-
if [[ $branch_name == 'refs/heads/master' ]]; then
54+
echo "Running on branch: $branch_name"
55+
if [[ $branch_name == 'master' ]]; then
5556
steps=("ecm_prep" "run")
5657
for step in "${steps[@]}"; do
5758
psrecord --log memory_log_${step}.txt --include-children --interval 1 "python tests/integration_testing/run_workflow.py --run_step $step --yaml tests/integration_testing/integration_test.yml --with_profiler"

0 commit comments

Comments
 (0)