From 0f796859f224526539dc1d2a235be0a64f679b89 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 12 Aug 2022 09:32:30 +0200 Subject: [PATCH] Fixed typo in ci workflow --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65fb6254..f3ed416f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,28 +72,28 @@ jobs: unit-mutation-tests: needs: - unit-tests - uses: './github/workflows/ci-mutation-tests.yml' + uses: './.github/workflows/ci-mutation-tests.yml' with: test-group: unit db-mutation-tests: needs: - sqlite-db-tests - uses: './github/workflows/ci-mutation-tests.yml' + uses: './.github/workflows/ci-mutation-tests.yml' with: test-group: db api-mutation-tests: needs: - api-tests - uses: './github/workflows/ci-mutation-tests.yml' + uses: './.github/workflows/ci-mutation-tests.yml' with: test-group: api cli-mutation-tests: needs: - cli-tests - uses: './github/workflows/ci-mutation-tests.yml' + uses: './.github/workflows/ci-mutation-tests.yml' with: test-group: cli