Skip to content

Fix typo in README (#11) #21

Fix typo in README (#11)

Fix typo in README (#11) #21

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu]
ruby:
- 2.5
- 2.6
- 2.7
- 3.0
- 3.1
runs-on: ${{ matrix.os }}-latest
# continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install system deps
run: |
sudo apt-get -y update
sudo apt-get -yqq --no-install-recommends install libvips-dev
- run: bundle install
- run: bundle exec rake