Skip to content

Commit

Permalink
ci: Remove restore-keys part so the tools are cached only by one key.
Browse files Browse the repository at this point in the history
REASON: when changing tool in `tools.sh` we want to use the new tool,
not the old ones.
  • Loading branch information
Matovidlo committed Nov 20, 2024
1 parent f4ae785 commit 2821a8d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,32 @@ on:
- "**"

jobs:
check-license:
name: "Check licenses"
secrets: inherit
uses: ./.github/workflows/check-licenses.yml

test-lint:
name: "Lint"
secrets: inherit
uses: ./.github/workflows/test-lint.yml

# check-license:
# name: "Check licenses"
# secrets: inherit
# uses: ./.github/workflows/check-licenses.yml
#
# test-lint:
# name: "Lint"
# secrets: inherit
# uses: ./.github/workflows/test-lint.yml
#
test-unit:
name: "Unit Tests"
secrets: inherit
uses: ./.github/workflows/test-unit.yml

test-e2e-cli:
name: "E2E: CLI"
secrets: inherit
uses: ./.github/workflows/test-e2e-cli.yml

test-e2e-service-buffer:
name: "E2E: Stream"
secrets: inherit
uses: ./.github/workflows/test-e2e-service-stream.yml

test-e2e-service-templates:
name: "E2E: Templates"
secrets: inherit
uses: ./.github/workflows/test-e2e-service-templates.yml
#
# test-e2e-cli:
# name: "E2E: CLI"
# secrets: inherit
# uses: ./.github/workflows/test-e2e-cli.yml
#
# test-e2e-service-buffer:
# name: "E2E: Stream"
# secrets: inherit
# uses: ./.github/workflows/test-e2e-service-stream.yml
#
# test-e2e-service-templates:
# name: "E2E: Templates"
# secrets: inherit
# uses: ./.github/workflows/test-e2e-service-templates.yml
2 changes: 1 addition & 1 deletion .github/workflows/test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
# Required for aws-actions/configure-aws-credentials using OIDC, assume role
permissions:
id-token: write
contents: read
contents: read

jobs:
lint:
Expand Down

0 comments on commit 2821a8d

Please sign in to comment.