Skip to content

[SL-57590] Update phony to work with rails 6 #12

[SL-57590] Update phony to work with rails 6

[SL-57590] Update phony to work with rails 6 #12

Workflow file for this run

name: SalesLoft
on:
push:
branches: [ master ]
tags: [ 'v*' ]
pull_request:
jobs:
rspec:
name: RSpec
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.2
- ruby: 3.1
- ruby: 3.0
- ruby: 2.7
env:
BUNDLE_GEMS__SALESLOFT__COM: ${{ secrets.SL_GEMSERVER_URL}}
DISPLAY: ":99.0"
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Gemfile
run: echo $BUNDLE_GEMFILE
- name: Ruby Version
run: ruby --version
- name: Run Tests
run: bundle exec rspec