Skip to content

Updated CMake support. #13

Updated CMake support.

Updated CMake support. #13

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: ['3.2', '3.3', '3.4', '4.0']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install LLVM and libclang
run: |
sudo apt-get install -y llvm libclang-dev
echo "LIBCLANG=$(llvm-config --libdir)/libclang.so" >> $GITHUB_ENV
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test