Skip to content

Commit 0915543

Browse files
committed
Try to get actions to work
This moves some comments around and changes the spacing, all in an effort to get the GitHub Actions to work again.
1 parent e7ad911 commit 0915543

File tree

4 files changed

+26
-28
lines changed

4 files changed

+26
-28
lines changed

.github/workflows/arraymerge_gtest.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: array-merge-gtest
22

3+
# The `workflow_dispatch` lets us manually trigger this action
4+
# through the GitHub web interface. See
5+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
6+
# for more details.
7+
# We probably want to re-run the `array_merge` checks if the
8+
# definition of `mergesort` changes since this depends on that.
39
on:
410
push:
511
paths:
6-
- 'array_merge/**'
7-
# We probably want to re-run the checks if the definition of
8-
# `mergesort` changes since this depends on that.
9-
- 'mergesort/mergesort.[ch]'
10-
# This lets us manually trigger this action
11-
# through the GitHub web interface. See
12-
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
13-
# for more details.
12+
- 'array_merge/**'
13+
- 'mergesort/mergesort.[ch]'
1414
workflow_dispatch:
1515

1616
jobs:
@@ -38,4 +38,3 @@ jobs:
3838
- name: Run test
3939
run: ./array_merge_test
4040
working-directory: array_merge
41-

.github/workflows/arraymerge_test_valgrind.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: array-merge-test-valgrind
22

3+
# The `workflow_dispatch` lets us manually trigger this action
4+
# through the GitHub web interface. See
5+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
6+
# for more details.
7+
# We probably want to re-run the `array_merge` checks if the
8+
# definition of `mergesort` changes since this depends on that.
39
on:
410
push:
511
paths:
6-
- 'array_merge/**'
7-
# We probably want to re-run the checks if the definition of
8-
# `mergesort` changes since this depends on that.
9-
- 'mergesort/mergesort.[ch]'
10-
# This lets us manually trigger this action
11-
# through the GitHub web interface. See
12-
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
13-
# for more details.
12+
- 'array_merge/**'
13+
- 'mergesort/mergesort.[ch]'
1414
workflow_dispatch:
1515

1616
jobs:

.github/workflows/mergesort_gtest.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: mergesort-gtest
22

3+
# The `workflow_dispatch` lets us manually trigger this action
4+
# through the GitHub web interface. See
5+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
6+
# for more details.
37
on:
48
push:
59
paths:
6-
- 'mergesort/**'
7-
# This lets us manually trigger this action
8-
# through the GitHub web interface. See
9-
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
10-
# for more details.
10+
- 'mergesort/**'
1111
workflow_dispatch:
1212

1313
jobs:
@@ -35,4 +35,3 @@ jobs:
3535
- name: Run test
3636
run: ./mergesort_test
3737
working-directory: mergesort
38-

.github/workflows/mergesort_test_valgrind.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: mergesort-test-valgrind
22

3+
# The `workflow_dispatch` lets us manually trigger this action
4+
# through the GitHub web interface. See
5+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
6+
# for more details.
37
on:
48
push:
59
paths:
6-
- 'mergesort/**'
7-
# This lets us manually trigger this action
8-
# through the GitHub web interface. See
9-
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
10-
# for more details.
10+
- 'mergesort/**'
1111
workflow_dispatch:
1212

1313
jobs:

0 commit comments

Comments
 (0)