Sha256: eb03d2ecb5a6b2c2bed564a2362670e40fa85ebad031ab36cc0988ecb6125111

Contents?: true

Size: 1.2 KB

Versions: 3

Compression:

Stored size: 1.2 KB

Contents

name: ci

on:
  push:
  schedule:
    - cron:  '0 1 * * *'

jobs:
  specs:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '2.7'
          - '2.6'
          - '2.5'
          - 'jruby'
          - 'truffleruby'
        include:
          - ruby: '2.7'
            coverage: 'true'
    steps:
      - uses: actions/checkout@v2
      - name: Install package dependencies
        run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{matrix.ruby}}
      - name: Install latest bundler
        run: |
          gem install bundler --no-document
          bundle config set without 'tools benchmarks docs'
      - name: Bundle install
        run: bundle install --jobs 4 --retry 3
      - name: Run all tests
        env:
          GITHUB_COVERAGE: ${{matrix.coverage}}
        run: bundle exec rspec
  coditsu:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - name: Run Coditsu
        run: \curl -sSL https://api.coditsu.io/run/ci | bash

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
null-logger-0.1.7 .github/workflows/ci.yml
envlogic-1.1.2 .github/workflows/ci.yml
worker-glass-0.2.5 .github/workflows/ci.yml