Skip to content

[xmlparser] Split out if elif block to account for DR having multiple… #74

[xmlparser] Split out if elif block to account for DR having multiple…

[xmlparser] Split out if elif block to account for DR having multiple… #74

Workflow file for this run

name: RSpec Tests
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.3']
name: Run tests on Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install ruby gem dependencies with bundler
run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run RSpec tests
run: bundle exec rspec