Sha256: 62e18d84a70ed378147a1061d31407e75b7334d9f64069195cd4b24457b4e3fe

Contents?: true

Size: 554 Bytes

Versions: 2

Compression:

Stored size: 554 Bytes

Contents

name: CI

on:
  workflow_dispatch:
  pull_request:
  push:
    branches:
      - main

concurrency:
  group: test-${{ github.ref }}
  cancel-in-progress: true

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.6, 3.1]

    steps:
    - uses: actions/checkout@v3

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

    - name: Style checking
      run: bundle exec rake rubocop

    - name: Run tests
      run: bundle exec rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-indico-0.6.2 .github/workflows/ci.yml
jekyll-indico-0.6.1 .github/workflows/ci.yml