Added support for pandas_categorical to predict method - resolves #8 #72
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-14, macos-13] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- if: ${{ startsWith(matrix.os, 'windows') }} | |
run: git config --global core.autocrlf false | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
bundler-cache: true | |
- if: ${{ startsWith(matrix.os, 'macos') }} | |
run: brew install libomp | |
- run: bundle exec rake vendor:platform | |
- run: bundle exec rake test |