diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 60cc13b..afbaa65 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -1,5 +1,5 @@ --- -name: "CI" +name: "Cache" on: workflow_call: jobs: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4151e84..e17245a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,7 @@ jobs: uses: ./.github/workflows/lint.yml cache: uses: ./.github/workflows/cache.yml + needs: [lint] test: uses: ./.github/workflows/test.yml - needs: [lint] + needs: [lint,cache]