Skip to content

config active support: use :json configuration #109

config active support: use :json configuration

config active support: use :json configuration #109

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: ${{ matrix.ruby-version }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ruby-version:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: "ranguba/groonga-client"
path: "groonga-client"
- name: Fix groonga-client path
run: |
mv groonga-client ../
- uses: actions/checkout@v4
with:
repository: "ranguba/groonga-client-model"
path: "groonga-client-model"
- name: Fix groonga-client-model path
run: |
mv groonga-client-model ../
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- uses: actions/setup-node@v4
- name: Install Groonga
run: |
sudo apt install -y -V software-properties-common
sudo add-apt-repository -y ppa:groonga/ppa
sudo apt update
sudo apt install -y groonga-bin
- run: |
bundle install
- name: Test
run: |
bin/rails test