Skip to content

update ghactions

update ghactions #127

Workflow file for this run

name: Squib Unit Tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ['3.1', '3.2', '3.3', '3.4', head]
runs-on: ${{ matrix.os }}
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby
with:
ruby-version: ${{ matrix.ruby }}
# bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: ruby --version # explicitly show the ruby version
- run: bundle install
- run: bundle exec rake