Sha256: 894421458da132d8ccc7d26351e9a5678415d72ffa9e81a67a6172ea0cfb5b02

Contents?: true

Size: 678 Bytes

Versions: 4

Compression:

Stored size: 678 Bytes

Contents

name: Test

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  rspec:
    strategy:
      matrix:
        os:
          - ubuntu-20.04
          - ubuntu-22.04
          - macos-11
          - macos-12
        ruby-version:
          - 2.7
          - 3.0
          - 3.1
          - 3.2
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rake

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
maid-0.10.0 .github/workflows/test.yml
maid-0.10.0.pre.alpha.3 .github/workflows/test.yml
maid-0.10.0.pre.alpha.2 .github/workflows/test.yml
maid-0.10.0.pre.alpha.1 .github/workflows/test.yml