Skip to content

Add ci to run bundler #1

Add ci to run bundler

Add ci to run bundler #1

Workflow file for this run

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
pull-requests: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check_test_execution_conditions:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: xt0rted/block-autosquash-commits-action@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.7.6
- 3.0.6
- 3.1.4
needs:
- check_test_execution_conditions
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true