no cache
Some checks failed
/ Text (push) Failing after 5s
/ Checkout (push) Successful in 11s

This commit is contained in:
david 2024-07-22 22:47:30 +02:00
parent 94dc6ebf8a
commit 2d648ae879

View file

@ -5,14 +5,19 @@ jobs:
container: ruby:3.3.4
name: Text
steps:
- name: Cache repository
uses: actions/cache@v4
id: cache-repository
with:
path: repository
key: ${{ runner.os }}-repository-${{ github.sha }}
restore-keys: |
${{ runner.os }}-repository-
# - name: Cache repository
# uses: actions/cache@v4
# id: cache-repository
# with:
# path: repository
# key: ${{ runner.os }}-repository-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-repository-
# - name: Cache bundle
# uses: actions/cache@v4
# id: cache-bundle
# with:
# path: /usr/local/bundle
- name: Checkout repository
uses: actions/checkout@v4
with: