Skip to content

chore(deps): bump actions/setup-java from 4.2.2 to 4.3.0 #301

chore(deps): bump actions/setup-java from 4.2.2 to 4.3.0

chore(deps): bump actions/setup-java from 4.2.2 to 4.3.0 #301

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@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854
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:
- 35.0.0
timeout-minutes: 20
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854
with:
bundler-cache: true
- uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88
with:
distribution: 'corretto'
java-version: ${{ matrix.java-version }}
- uses: ./.github/actions/setup-buildtools
with:
buildtools-version: ${{ matrix.buildtools-version }}
- run: bundle exec rake specs