Sha256: 8c98cb4b55658c95603b1c3305b4040c0d2c7f53e31f7386aef2167921e19f8e

Contents?: true

Size: 684 Bytes

Versions: 3

Compression:

Stored size: 684 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'
        - '3.1'
    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

3 entries across 3 versions & 1 rubygems

Version Path
zeebe-client-0.17.0 .github/workflows/ci.yml
zeebe-client-0.16.3 .github/workflows/ci.yml
zeebe-client-0.16.2 .github/workflows/ci.yml