Skip to content

Avoid warnings for frozen string literals #12

Avoid warnings for frozen string literals

Avoid warnings for frozen string literals #12

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
yamatanooroti:
name: >-
yamaoro ${{ matrix.os }} ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
ruby: [ 'head', '3.2', '3.1', '3.0', 2.7, 2.6, 2.5 ]
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install libvterm
run: |
sudo apt install -y libtool-bin
wget http://www.leonerd.org.uk/code/libvterm/libvterm-0.1.4.tar.gz
tar xvzf libvterm-0.1.4.tar.gz
cd libvterm-0.1.4
sed -i -e 's/^PREFIX=.*$/PREFIX=\/usr/g' Makefile
make
sudo make install
- name: rake test
run: |
bundle install
bundle exec rake test