version bump 0.2.2 #83
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: Test | |
on: | |
pull_request: | |
push: { branches: master } | |
jobs: | |
test: | |
name: Ruby ${{ matrix.ruby }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: { ruby: ['3.0', '3.1', '3.2', '3.3'] } | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install OS dependencies | |
run: sudo apt-get -y install libyaml-dev | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '${{ matrix.ruby }}' | |
bundler-cache: true | |
- name: Start mock server | |
run: | | |
nohup bundle exec run mockserver & | |
sleep 2 | |
- name: Run tests | |
run: bundle exec rspec |