Skip to content

Add rails credentials support #406

Add rails credentials support

Add rails credentials support #406

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: ${{ matrix.ruby }}
runs-on: ubuntu-latest
env:
COVERAGE_RUBY_VERSION: 2.6
BUNDLE_PATH: vendor/bundle
RAILS_MASTER_KEY: 0e29551e5c31acf7c769d64397af54e4 # rails require to decrypt creds
strategy:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.7
- '3.0' # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
- 3.1
- 3.2
- 3.3
- jruby
- truffleruby
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Restore cache
uses: actions/cache@v4
with:
path: ${{ env.BUNDLE_PATH }}
key: ruby-${{ matrix.ruby }}-gems-${{ hashFiles('config.gemspec', 'gemfiles/**') }}
restore-keys: |
ruby-${{ matrix.ruby }}-gems-
- name: Prepare environment
run: |
sudo apt-get -y install libsqlite3-dev libxslt1-dev
- name: Install
run: |
bundle install
bundle exec appraisal install
- name: Test
run: bundle exec appraisal rspec
- name: Publish code coverage
if: startsWith(env.RUBY_VERSION, env.COVERAGE_RUBY_VERSION)
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: bundle exec appraisal rspec