@@ -2,23 +2,24 @@ name: Test Action
22
33on :
44 push :
5- branches : [main]
5+ branches :
6+ - " **"
67 pull_request :
7- workflow_call : # Allow other workflows to call this
8+ workflow_call : # Allow other workflows to call this
89
910jobs :
1011 lint-action-yaml :
1112 runs-on : ubuntu-latest
1213 steps :
13- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1415 - name : Validate action.yaml
1516 run : ruby -ryaml -e 'YAML.load_file("action.yaml")'
1617
1718 fixture-tests :
1819 needs : lint-action-yaml
1920 runs-on : ubuntu-latest
2021 steps :
21- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2223 - name : Run summary fixture tests
2324 run : ./tests/test_summary.sh
2425
2930 needs : [lint-action-yaml, fixture-tests]
3031 runs-on : ubuntu-latest
3132 steps :
32- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
33+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3334
3435 - name : Create test workspace
3536 run : |
@@ -133,7 +134,7 @@ jobs:
133134 needs : [lint-action-yaml, fixture-tests]
134135 runs-on : ubuntu-latest
135136 steps :
136- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
137+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
137138
138139 - name : Clone test repo (tokio)
139140 run : |
@@ -182,7 +183,7 @@ jobs:
182183 os : [ubuntu-latest, macos-14, windows-latest]
183184 runs-on : ${{ matrix.os }}
184185 steps :
185- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
186+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
186187
187188 - name : Clone test repo
188189 shell : bash
0 commit comments