Skip to content

IE-536 Ruby 3

IE-536 Ruby 3 #3

Workflow file for this run

name: CI
on: [pull_request]
jobs:
bundle-install:
runs-on: ubuntu-latest
environment: test
container:
image: ruby:3.0.6
steps:
- uses: actions/checkout@v1
- name: Gem cache
id: cache-bundle
uses: actions/cache@v1
with:
path: vendor/bundle
key: bundle-${{ hashFiles('**/Gemfile.lock') }}
- name: Bundle install
env:
RAILS_ENV: test
run: |
bundle install