Skip to content

chore: prep v1.0.2

chore: prep v1.0.2 #1

Workflow file for this run

name: Ruby
on:
push:
branches:
- main

Check failure on line 7 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7.8'
- '3.3.0'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: bundle
run: bundle install
- name: compile
run: |
cd ext/rinchi-gem/
ruby extconf.rb && make
- name: test
run: bundle exec rake