Sha256: d6c92430fc95661a7137064efe6cd34ef428a767f363f6d3c4def5ef66d86479

Contents?: true

Size: 749 Bytes

Versions: 2

Compression:

Stored size: 749 Bytes

Contents

name: build

on:
  push:
  schedule:
    - cron: '20 5 * * 1'
  workflow_dispatch:

jobs:
  test:
    runs-on: ubuntu-20.04

    strategy:
      fail-fast: false

      matrix:
        ruby-version:
          - 3.2
          - 3.1
          - 3.0
          - 2.7
          - 2.6
          - 2.5
          - 2.4
          - 2.3
          - jruby-9.4.3.0
          - jruby-9.2.14.0
          - truffleruby-23.0.0
          - truffleruby-22.1.0

    steps:
      - uses: actions/checkout@v2

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

      - name: Run tests
        run: bundle exec rspec --format documentation

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
logtail-0.1.13 .github/workflows/main.yml
logtail-0.1.12 .github/workflows/main.yml