Skip to content

Merge pull request #4 from betadots/dependabot/bundler/ra10ke-tw-3.0 #25

Merge pull request #4 from betadots/dependabot/bundler/ra10ke-tw-3.0

Merge pull request #4 from betadots/dependabot/bundler/ra10ke-tw-3.0 #25

Workflow file for this run

---
name: QA🚦
on:
pull_request: {}
push:
paths-ignore:
- '.github/**'
branches:
- main
jobs:
build_docker_image:
name: 'Test container build'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build container
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
push: false
test_gem_installation:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
tests:
needs:
- build_docker_image
- test_gem_installation
runs-on: ubuntu-latest
name: Test suite
steps:
- run: echo Test suite completed