From ef3c1fc7127c2df38b1b54168e651aecac7e64f2 Mon Sep 17 00:00:00 2001 From: flx-sta <50131232+flx-sta@users.noreply.github.com> Date: Tue, 10 Sep 2024 10:26:57 -0700 Subject: [PATCH] change usage of reuseable workflow call --- .github/workflows/tests.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ee356b1c7f8..1224cd2298b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,9 +34,10 @@ jobs: name: Run Tests runs-on: ubuntu-latest needs: pre-test - # strategy: - # matrix: - # project: [misc, abilities, items, moves, battle] - uses: ./.github/workflows/run-test-template.yml - with: - project: misc \ No newline at end of file + strategy: + matrix: + project: [misc, abilities, items, moves, battle] + steps: + - uses: ./.github/workflows/run-test-template.yml + with: + project: misc \ No newline at end of file