Skip to content

Bump 0.5.1

Bump 0.5.1 #62

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
branches: ['*']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test / Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.4"]
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: oxidize-rb/actions/setup-ruby-and-rust@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
cargo-cache: true
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y cmake perl pkg-config libclang-dev
- name: Compile
run: bundle exec rake compile
- name: Test
run: bundle exec rake test