Files
Benjamin Pollack f18bdcfeba ci: build against Ruby 3.2
3.0 and 3.1 are both EOL
2025-08-15 10:24:35 -04:00

22 lines
454 B
YAML

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.2']
steps:
- name: Check out repository code
uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Rake
run: bundle exec rake