Skip to content

Merge branch 'main' of github.com:malvads/easy-cache #27

Merge branch 'main' of github.com:malvads/easy-cache

Merge branch 'main' of github.com:malvads/easy-cache #27

Workflow file for this run

name: Build gem
on:
push:
pull_request:
branches:
- main
jobs:
build:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]')
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3', '3.2', '3.1', '3.0', '2.7']
name: Build gem with Ruby ${{ matrix.ruby-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Gem build with Ruby ${{ matrix.ruby-version }}
run: gem build easycache.gemspec