Skip to content

Fixing and Modifying web ui to reduce complexity #77

Fixing and Modifying web ui to reduce complexity

Fixing and Modifying web ui to reduce complexity #77

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test (Ruby ${{ matrix.ruby-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- "3.2"
- "3.3"
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run verification
run: bundle exec rake verify