Fix typo in README (#11) #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |