Skip to content

chore(deps): bump ruby/setup-ruby from 1.176.0 to 1.177.0 #263

chore(deps): bump ruby/setup-ruby from 1.176.0 to 1.177.0

chore(deps): bump ruby/setup-ruby from 1.176.0 to 1.177.0 #263

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-latest
strategy:
matrix:
task:
- rubocop
- rdoc
timeout-minutes: 5
name: "Execute ${{ matrix.task }}"
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- uses: ruby/setup-ruby@6615b4b8a02c78c4d711c06df4b8a20aa685a45d
with:
bundler-cache: true
- run: bundle exec rake ${{ matrix.task }}
build:
runs-on: ubuntu-latest
strategy:
matrix: # Use as the parameter injection
java-version:
- 11
buildtools-version:
- 34.0.0
timeout-minutes: 20
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- uses: ruby/setup-ruby@6615b4b8a02c78c4d711c06df4b8a20aa685a45d
with:
bundler-cache: true
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9
with:
distribution: 'corretto'
java-version: ${{ matrix.java-version }}
- uses: ./.github/actions/setup-buildtools
with:
buildtools-version: ${{ matrix.buildtools-version }}
- run: bundle exec rake specs