Skip to content

Commit aa891c5

Browse files
committed
only 2 tests
1 parent 173dda1 commit aa891c5

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/framework-golden-tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ jobs:
1919
contents: read
2020
strategy:
2121
matrix:
22-
config-file: [load.toml, chaos.toml] # Configuration files
23-
test-name: [TestLoad, TestChaos] # Corresponding test names
22+
config-test:
23+
- config-file: load.toml
24+
test-name: TestLoad
25+
- config-file: chaos.toml
26+
test-name: TestChaos
2427
steps:
2528
- name: Checkout repo
2629
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
@@ -59,6 +62,6 @@ jobs:
5962
- name: Run Docker Component Tests
6063
if: steps.changes.outputs.src == 'true'
6164
env:
62-
CTF_CONFIGS: ${{ matrix.config-file }}
65+
CTF_CONFIGS: ${{ matrix.config-test.config-file }}
6366
run: |
64-
go test -timeout 5m -v -count 1 -run ${{ matrix.test-name }}
67+
go test -timeout 5m -v -count 1 -run ${{ matrix.config-test.test-name }}

0 commit comments

Comments
 (0)