Sha256: 284e3b9e5f0573320954f910557affe54270ef85648165f4ae39925bf3c511e9

Contents?: true

Size: 615 Bytes

Versions: 2

Compression:

Stored size: 615 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:
        os: [ubuntu-latest]
        ruby: ["3.0", "3.3", head]
        test_command: ["bundle exec rake test"]
    runs-on: ${{ matrix.os }}

    steps:
    - uses: actions/checkout@v3
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Bundle install
      run: |
        bundle config path /home/runner/bundle
        bundle install
        bundle update
    - run: ${{ matrix.test_command }}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
doit-1.0.9 .github/workflows/rake.yml
doit-1.0.8 .github/workflows/rake.yml