Skip to content

Commit

Permalink
fix: Cache path
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-gav committed Feb 18, 2024
1 parent 6b32fc2 commit d7c53d7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/.build-caching/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Build caching

Here go all the cached builds that github actions require
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: cache-clang-formatter
uses: actions/cache@v4
with:
path: clang-formatter
path: .github/build-caching
key: ${{ runner.os }}-clang-formatter

- name: Format source code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: cache-project-dependencies
uses: actions/cache@v4
with:
path: project-dependencies
path: .github/build-caching
key: ${{ runner.os }}-project-dependencies
- name: Run tests
run: docker-compose run test
Expand Down

0 comments on commit d7c53d7

Please sign in to comment.