Sha256: c4bf4b286e80b24924eb6d581dbf1622a57a72259755720dfcb569842336c4b4

Contents?: true

Size: 678 Bytes

Versions: 2

Compression:

Stored size: 678 Bytes

Contents

# This workflow uses actions that are not certified by GitHub.  They are
# provided by a third-party and are governed by separate terms of service,
# privacy policy, and support documentation.
#
# This workflow will install a prebuilt Ruby version, install dependencies, and
# run tests and linters.
name: "Ruby CI"
on:
  push:
    branches: [ '**' ]
jobs:
  ruby-test:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v3
      - name: Ruby setup
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
      - name: Lint
        run: bundle exec rubocop
      - name: Test
        run: bundle exec rake test

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
qr4r-0.6.2 .github/workflows/ruby.yml
mojo_magick-0.6.8 .github/workflows/ruby.yml