docs: clarify usage for Bundler apps vs standalone scripts #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- "2.3.8" | |
- "2.4.10" | |
- "2.5.9" | |
- "2.6.7" | |
- "2.7.8" | |
- "3.0.6" | |
- "3.1.4" | |
- "3.2.3" | |
- "3.3.0" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true # automatic bundle caching | |
- name: Install dependencies | |
run: bundle install --jobs 3 --retry 3 | |
- name: Run specs | |
run: bundle exec rspec |