Skip to content

Workflow file for this run

name: devlog CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.3.5, 3.0.1, 2.3.0]
os: [ubuntu-latest, macOS-lates]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ runner.os }}-§${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake