Skip to content

Improved code

Improved code #20

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] # macos-latest requires large boost download
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: sudo apt update && sudo apt install libvw0
- if: ${{ startsWith(matrix.os, 'macos') }}
run: brew install vowpal-wabbit
- run: bundle exec rake test