Skip to content

Bump nokogiri from 1.15.4 to 1.15.5 #184

Bump nokogiri from 1.15.4 to 1.15.5

Bump nokogiri from 1.15.4 to 1.15.5 #184

Workflow file for this run

name: Unit_test
on: [push]
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run tests
run: rspec ./spec/unit