Skip to content

Merge get_package_location into get_source_location (#82) #245

Merge get_package_location into get_source_location (#82)

Merge get_package_location into get_source_location (#82) #245

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.2.0, 3.3.0]
appraisal: ["rails_7.1", "rails_7.2", "rails_8.0"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install appraisal dependencies
run: bundle exec appraisal install
- name: Run appraisal
run: bundle exec appraisal ${{ matrix.appraisal }} rspec
- name: Lint code for consistent style
run: bundle exec rubocop