WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Bump the dev-dependencies group across 1 directory with 6 updates #1618

Bump the dev-dependencies group across 1 directory with 6 updates

Bump the dev-dependencies group across 1 directory with 6 updates #1618

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Check style
run: bundle exec rake style
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Typecheck
run: bundle exec srb tc
test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
ruby-version: ['3.1', '3.2', '3.3', '3.4']
runs-on: ${{ matrix.os }}
env:
BUNDLE_WITHOUT: typecheck
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test