Merge pull request #122 from dxw/renovate/rmagick-5.x-lockfile #402
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: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
- name: Install test dependencies | |
run: | | |
sudo apt-get install libmagickwand-dev | |
bundle install --frozen --jobs 4 --retry 3 --without development | |
- name: Run tests | |
run: rake test |