Merge pull request #124 from minter/dependabot/bundler/nokogiri-1.17.1 #443
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 MiniTest | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
run-minitest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
# runs 'bundle install' and caches installed gems automatically | |
bundler-cache: true | |
- name: Run tests | |
env: | |
RAILS_ENV: test | |
TIME_ZONE: America/New_York | |
NHL_TEAM_ABBREVIATION: CAR | |
run: | | |
bundle exec rails test |