Sha256: e0c4b5a7cc8a7701531b2c00ba909522cdc85c37909713866f929e083a49fd22

Contents?: true

Size: 516 Bytes

Versions: 2

Compression:

Stored size: 516 Bytes

Contents

name: Ruby

on:
  push:
    branches:
      - "**"

  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Ruby ${{ matrix.ruby }}
    strategy:
      matrix:
        ruby:
          - '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
    # FIXME: enable after #1
    #- name: Rubocop
    #  run: bundle exec rubocop
    - name: RSpec
      run: bundle exec rspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
unihan_lang-0.2.0 .github/workflows/main.yml
unihan_lang-0.1.0 .github/workflows/main.yml