Sha256: 64bcd9dc87562df1e0267efd192c1fb324e6e05c191051e85e8aae50f575716a

Contents?: true

Size: 807 Bytes

Versions: 5

Compression:

Stored size: 807 Bytes

Contents

# see also https://github.com/whitequark/parser/blob/master/.github/workflows/test.yml
name: Rake

on: [push]

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        ruby_version: ["3.2", "3.3"]
        gemfile:
          - Gemfile
          - gemfiles/Gemfile.rails-7.2
          - gemfiles/Gemfile.rails-7.1
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby_version }}
          bundler-cache: true
      - name: Bundle install
        run: |
          bundle config set frozen false
          bundle config path /home/runner/bundle
          bundle install
          bundle update
      - name: Build and test with Rake
        run: bundle exec rake

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
formie-1.1.4 .github/workflows/rake.yml
relation-0.4.5 .github/workflows/rake.yml
act_with_flags-3.1.9 .github/workflows/rake.yml
act_with_flags-3.1.6 .github/workflows/rake.yml
formie-1.1.3 .github/workflows/rake.yml