Skip to content

Update rake.yml

Update rake.yml #23

Workflow file for this run

name: Rake
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby-version }}
strategy:
matrix:
ruby-version:
- "3.0"
- "3.1"
- "3.2"
- head
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install ImageMagick
run: |
sudo apt-get install imagemagick
convert -version
- name: Run tests
run: bundle exec rake