Skip to content

Merge pull request #25 from eclectic-coding/24-setup-tty-config-to-sa… #63

Merge pull request #25 from eclectic-coding/24-setup-tty-config-to-sa…

Merge pull request #25 from eclectic-coding/24-setup-tty-config-to-sa… #63

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.1', '3.2', '3.3']
env:
BUNDLE_PATH_RELATIVE_TO_CWD: true
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: StandardRb check
run: bundle exec standardrb
- name: Run tests
run: bundle exec rake spec