Skip to content

Add Windows to platforms for oj and yajl #42

Add Windows to platforms for oj and yajl

Add Windows to platforms for oj and yajl #42

Workflow file for this run

name: Ruby
on:
push:
branches: [ master, main ]
paths-ignore:
- '**/*.md'
pull_request:
branches: [ master, main ]
paths-ignore:
- '**/*.md'
jobs:
test:
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2', 'jruby']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
run: |
gem install bundler
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: false
- name: Run tests
run: |
bundle exec rake