Bump minitest from 5.25.1 to 5.25.2 #46
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: Render Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1.190.0 | |
with: | |
ruby-version: 3.1.1 | |
bundler-cache: true | |
- name: Install development dependencies | |
run: bundle install --with development | |
- name: Run render_test.rb | |
run: bundle exec ruby test/render_test.rb |