Sha256: 85df767bce1deec265e87877eb6f5c1c3c8f3ceaf5225bd7206ac286cd25e01e

Contents?: true

Size: 989 Bytes

Versions: 5

Compression:

Stored size: 989 Bytes

Contents

name: build
on: 
  push:
    branches: [ main ]
  pull_request:

jobs:
  test:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version: [2.7, 2.6, 2.5]

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1.81.0
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rspec
  lint:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version: [2.7, 2.6, 2.5, '3.0']

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1.81.0
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - name: Install dependencies
        run: bundle install
      - name: Run rubocop
        run: bundle exec rubocop

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
snfoil-searcher-0.0.2 .github/workflows/main.yml
snfoil-context-0.0.2 .github/workflows/main.yml
snfoil-searcher-0.0.1 .github/workflows/main.yml
snfoil-context-0.0.1 .github/workflows/main.yml
snfoil-policy-0.0.1 .github/workflows/main.yml