Skip to content

Support Ruby 3.3

Support Ruby 3.3 #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby: ['3.3', '3.2', '3.1', '2.7']
steps:
- name: "☁️ checkout repository"
uses: actions/checkout@v4
with:
submodules: true
- name: "📦 install dependencies"
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: "📀 building"
run: bundle exec rake transform:icons
- name: "🔍 run tests"
run: bundle exec rake