Skip to content

update workflows

update workflows #26

Workflow file for this run

name: Ruby Syntax Check
on:
pull_request:
jobs:
ruby-syntax:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
- name: Check Ruby syntax
run: |
find . \( -name '*.rb' -o -name 'rp' \) -exec ruby -c {} \;