Skip to content

Bump actions/checkout from 4 to 6 #288

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #288

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@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rake unit_tests