Skip to content

chore(deps): bump ruby/setup-ruby from 1.244.0 to 1.275.0 #426

chore(deps): bump ruby/setup-ruby from 1.244.0 to 1.275.0

chore(deps): bump ruby/setup-ruby from 1.244.0 to 1.275.0 #426

Workflow file for this run

name: Build and test
on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- master
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-22.04
strategy:
matrix:
task:
- rubocop
- rdoc
timeout-minutes: 5
name: "Execute ${{ matrix.task }}"
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b
with:
bundler-cache: true
- run: bundle exec rake ${{ matrix.task }}
build:
runs-on: ubuntu-22.04
strategy:
matrix: # Use as the parameter injection
java-version:
- 11
buildtools-version:
- 35.0.1
timeout-minutes: 20
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b
with:
bundler-cache: true
- uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
with:
distribution: 'corretto'
java-version: ${{ matrix.java-version }}
- uses: ./.github/actions/setup-buildtools
with:
buildtools-version: ${{ matrix.buildtools-version }}
- run: bundle exec rake specs