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

This commit is contained in:
david 2024-07-22 22:48:43 +02:00
parent 2d648ae879
commit 067f390a5f

View file

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