Skip to content

chore(deps): bump actions/checkout from 4.0.0 to 4.1.0 #133

chore(deps): bump actions/checkout from 4.0.0 to 4.1.0

chore(deps): bump actions/checkout from 4.0.0 to 4.1.0 #133

Workflow file for this run

name: Build and test
on:
pull_request:
types:
- opened
- ready_for_review
- synchronize
push:
branches:
- master
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
task:
- rubocop
- rdoc
name: "Execute ${{ matrix.task }}"
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- uses: ruby/setup-ruby@52b8784594ec115fd17094752708121dc5dabb47
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:
- 29.0.3
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- uses: ruby/setup-ruby@52b8784594ec115fd17094752708121dc5dabb47
with:
bundler-cache: true
- uses: actions/setup-java@4075bfc1b51bf22876335ae1cd589602d60d8758
with:
distribution: 'corretto'
java-version: ${{ matrix.java-version }}
- uses: ./.github/actions/setup-buildtools
with:
buildtools-version: ${{ matrix.buildtools-version }}
- run: bundle exec rake specs