Skip to content

Bump actions/checkout from 3 to 4 (#11) #13

Bump actions/checkout from 3 to 4 (#11)

Bump actions/checkout from 3 to 4 (#11) #13

Workflow file for this run

name: ci
on:
push:
branches: [main]
paths-ignore: ['**.md', '.rubocop.yml']
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
paths-ignore: ['**.md', '.rubocop.yml']
jobs:
build-and-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby-version: ['2.6', '2.7']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test