Skip to content

Fix for the changes of the documentation #196

Fix for the changes of the documentation

Fix for the changes of the documentation #196

Workflow file for this run

name: ubuntu
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ head, 3.3, 3.2, 3.1 ]
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
bundle install
- name: Run test
run: xvfb-run bundle exec rake test