Skip to content

Run bundle-stats command with custom Gemfile path (#30) #19

Run bundle-stats command with custom Gemfile path (#30)

Run bundle-stats command with custom Gemfile path (#30) #19

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ruby-version: [3.1, 3.0, 2.7, 2.6, 2.5, 2.4, 2.3]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec