Sha256: f15e0f5fabcb5b8033ae7d88ac216bd6c392584b7cbdc231f2e52a8490764c70

Contents?: true

Size: 503 Bytes

Versions: 1

Compression:

Stored size: 503 Bytes

Contents

name: ci

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ["2.5", "2.6", "2.7", "3.0"]
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: ${{ matrix.ruby }}
      - name: Run all tests
        run: bundle exec rspec
      - name: Run rubocop
        run: bundle exec rubocop

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
grafana_annotations-0.1.0 .github/workflows/ci.yml