Sha256: 80dae8e0f0c3f0e45323f3ad9863a7b24e26f9a2db17f3af540e091ff435a1ce

Contents?: true

Size: 552 Bytes

Versions: 6

Compression:

Stored size: 552 Bytes

Contents

name: Test & Lint

on:
  push:
    branches: [main]
  pull_request:

jobs:
  test:

    runs-on: ubuntu-latest

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

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
        with:
          ruby-version: ${{ matrix.ruby-version }}
      - name: Install dependencies
        run: bundle install
      - name: Rubocop
        run: rubocop
      - name: Run tests
        run: bundle exec rake

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
papers_please-0.1.7 .github/workflows/test.yml
papers_please-0.1.6 .github/workflows/test.yml
papers_please-0.1.5 .github/workflows/test.yml
slayer-0.5.3 .github/workflows/test.yml
slayer-0.5.2 .github/workflows/test.yml
slayer-0.5.1 .github/workflows/test.yml