Sha256: cca02a6c6d00b8278c2aecb47dea85ed938905cef929644639fed221a09678ee

Contents?: true

Size: 668 Bytes

Versions: 9

Compression:

Stored size: 668 Bytes

Contents

---
name: ci

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]
  workflow_dispatch:
  schedule:
  - cron: '55 4 * * 4'  # weekly on thursday morning

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version:
        - '2.5'
        - '2.6'
        - '2.7'
        - '3.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  # runs 'bundle install' and caches installed gems automatically
    - name: Test
      run: |
        bundle exec rake ci

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
zeebe-client-0.16.1 .github/workflows/ci.yml
zeebe-client-0.16.0 .github/workflows/ci.yml
zeebe-client-0.15.1 .github/workflows/ci.yml
zeebe-client-0.15.0 .github/workflows/ci.yml
zeebe-client-0.14.2 .github/workflows/ci.yml
zeebe-client-0.14.1 .github/workflows/ci.yml
zeebe-client-0.14.0 .github/workflows/ci.yml
zeebe-client-0.13.2 .github/workflows/ci.yml
zeebe-client-0.13.1 .github/workflows/ci.yml