Skip to content

Update Gemfile.lock #56

Update Gemfile.lock

Update Gemfile.lock #56

Workflow file for this run

name: Ruby Build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
version: ['3.0', '3.2']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Ruby 3.1.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
- name: Before install
run: gem install bundler -v "~> 2.1.4"
- name: Bundle install
run: bundle install
- name: Gem build
run: gem build *.gemspec