add wrapper to countries #40
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 RSpec Tests | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['3.2', '3.3.4'] | |
steps: | |
# Step 1: Check out the repository | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
# Step 2: Set up Ruby | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
# Step 3: Install dependencies with verbose logging | |
- name: Install dependencies | |
run: | | |
gem install bundler | |
bundle install --verbose | |
# Step 4: Run tests | |
- name: Run tests | |
run: | | |
bundle exec rspec --backtrace |