Skip to content

gem: use ruby version matrix #80

gem: use ruby version matrix

gem: use ruby version matrix #80

Workflow file for this run

---
name: Build
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.3', '3.4']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install Dependencies
run: |
gem install test-unit
make clean
- name: Build and run Tests
run: |
make all
make test