Update dependency standard to v1.43.0 #503
Workflow file for this run
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 |