Try with cache
All checks were successful
Ruby CI / test (pull_request) Successful in 32s

This commit is contained in:
Andrew Tomaka 2024-04-25 23:31:08 -04:00
parent eeeaf4b238
commit 482ab7c877
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -17,8 +17,16 @@ jobs:
apt-get update apt-get update
apt-get install -y nodejs apt-get install -y nodejs
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install dependencies - name: Install dependencies
run: bundle install run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: autoload - name: autoload
run: bin/rails zeitwerk:check run: bin/rails zeitwerk:check
- name: lint - name: lint