Sha256: 24d196949bf8b5c7cc17e8ba1bdbcf180221eb3104898d11e4251fda44aaf4b5

Contents?: true

Size: 581 Bytes

Versions: 3

Compression:

Stored size: 581 Bytes

Contents

name: Ruby

on: [push,pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    name: Ruby ${{ matrix.ruby }}
    strategy:
      matrix:
        ruby:
          - '3.0.5'
          - '3.1.3'
          - '3.2.0'
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: prettier
      run: bundle exec rbprettier --check '**/*.rb'
    - name: rubocop
      run: bundle exec rubocop .
    - name: Run the default task
      run: bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kzg-0.3.0 .github/workflows/main.yml
kzg-0.2.0 .github/workflows/main.yml
kzg-0.1.0 .github/workflows/main.yml