Sha256: f70b343ecdcbd3fa455990de9f4507876198f6ded94b420d024cafe922a902d9

Contents?: true

Size: 431 Bytes

Versions: 5

Compression:

Stored size: 431 Bytes

Contents

name: ruby
on: push

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ["2.7", "3.0.1"]
    name: tests for ruby-${{ matrix.ruby }}
    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: ${{ matrix.ruby }}

      - name: Run tests
        run: bin/test

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pbbuilder-0.10.0 .github/workflows/test.yml
pbbuilder-0.9.0 .github/workflows/test.yml
pbbuilder-0.8.0 .github/workflows/test.yml
pbbuilder-0.7.0 .github/workflows/test.yml
pbbuilder-0.6.0 .github/workflows/test.yml