Skip to content

Bump actions/checkout from 2 to 4 (#49) #284

Bump actions/checkout from 2 to 4 (#49)

Bump actions/checkout from 2 to 4 (#49) #284

Workflow file for this run

name: evervault-unit-tests
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu]
ruby: [3.0, 3.1, 3.2]
runs-on: ${{ matrix.os }}-latest
continue-on-error:
${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rake unit_tests