Skip to content

Add x86-64 lock to bundler #2

Add x86-64 lock to bundler

Add x86-64 lock to bundler #2

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- main
jobs:
ci:
name: Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
ruby:
- '3.0.6'
- '3.1.4'
- '3.2.3'
- '3.3.0'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Lint with Rubocop
run: bundle exec rubocop
- name: Testing
run: bin/test