Remove trailing whitespaces from README.md (#186)

[skip ci]
This commit is contained in:
Mosè Giordano
2025-11-07 19:42:28 +00:00
committed by GitHub
parent 05a577a682
commit 5dc38e58e3

View File

@@ -79,7 +79,7 @@ The cache key that the cache will be saved as is based on:
- The run attempt number - The run attempt number
> [!NOTE] > [!NOTE]
> If there is job concurrency that is not fully defined by a matrix you should ensure that `cache-name` is > If there is job concurrency that is not fully defined by a matrix you should ensure that `cache-name` is
> unique for each concurrent job, otherwise caching may not be effective. > unique for each concurrent job, otherwise caching may not be effective.
### Cache Retention ### Cache Retention
@@ -129,7 +129,7 @@ For example, this workflow will ensure that the cache is saved if a step fails (
id: julia-cache-save id: julia-cache-save
if: cancelled() || failure() if: cancelled() || failure()
uses: actions/cache/save@v4 uses: actions/cache/save@v4
with: with:
path: | path: |
${{ steps.julia-cache.outputs.cache-paths }} ${{ steps.julia-cache.outputs.cache-paths }}
key: ${{ steps.julia-cache.outputs.cache-key }} key: ${{ steps.julia-cache.outputs.cache-key }}