Skip to content
This repository was archived by the owner on Dec 26, 2025. It is now read-only.

chore: update actions/cache to v3 #256

chore: update actions/cache to v3

chore: update actions/cache to v3 #256

Workflow file for this run

name: CI
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
- uses: actions/cache@v3
with:
path: vendor/bundle
key: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-
- run: test_app/bin/setup
- run: cd test_app && bundle exec rails test