Skip to content

Capitalize the names of all technologies for output only. #241

Capitalize the names of all technologies for output only.

Capitalize the names of all technologies for output only. #241

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby: [ '3.3', '3.2', '3.1', '3.0', '2.7', '2.6' ]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake test