Skip to content

feature: refactor ♻️ adding Atco::Header record type, separate unit & integration tests and name translink specs #63

feature: refactor ♻️ adding Atco::Header record type, separate unit & integration tests and name translink specs

feature: refactor ♻️ adding Atco::Header record type, separate unit & integration tests and name translink specs #63

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [
'3.0.6',
'3.1.4',
'3.2.3',
'3.3.0'
]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rspec spec
- name: Test gem bundling
run: bundle check