Sha256: c671a19831a2811eada51dc17d6fafe75d31a95eb64c35d1d6e15d4d72287c84

Contents?: true

Size: 753 Bytes

Versions: 1

Compression:

Stored size: 753 Bytes

Contents

name: Build
on: [ push, pull_request, workflow_dispatch ]
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ ubuntu-latest, macos-latest ]
        ruby: [ '2.7', '3.0', '3.1' ]
    runs-on: ${{ matrix.os }}

    steps:
      - name: Check out repository
        uses: actions/checkout@v3

      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically

      - name: Run checks
        run: bundle exec rake

      - name: Upload artifacts
        if: ${{ always() }}
        uses: actions/upload-artifact@v3
        with:
          name: artifacts
          path: artifacts/**

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
berkeley_library-util-0.1.9 .github/workflows/build.yml