Skip to content

[AF-10] Add development workflow #4

[AF-10] Add development workflow

[AF-10] Add development workflow #4

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- "3.3.0"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run suite
run: bundle exec rspec spec/ --color --format progress
env:
CI: true
RACK_ENV: test
RAILS_ENV: test