Skip to content

Omit if the result of describe_class is empty #193

Omit if the result of describe_class is empty

Omit if the result of describe_class is empty #193

Workflow file for this run

name: ubuntu
on: [push]
jobs:
test:
strategy:
matrix:
ruby: [ head, 3.1, 3.0, 2.7 ]
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
sudo apt install libncursesw5-dev
gem install bundler --no-document
bundle install
- name: Run test
run: xvfb-run bundle exec rake test