Sha256: 1209cf4cde83c49959bfe7e75c98f5cf78da6a31d0129aaa7768d18ea8c43c92

Contents?: true

Size: 496 Bytes

Versions: 4

Compression:

Stored size: 496 Bytes

Contents

name: Ruby

on: [push, pull_request]

jobs:
  test:
    strategy:
      fail-fast: true
      matrix:
        ruby: [2.7, 3.0, 3.1]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Run prettier
        run: bundle exec rbprettier --check '**/*.rb'
      - name: Run the default task
        run: bundle exec rake

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sidetree-0.1.4 .github/workflows/main.yml
sidetree-0.1.3 .github/workflows/main.yml
sidetree-0.1.2 .github/workflows/main.yml
sidetree-0.1.1 .github/workflows/main.yml