Sha256: c3481e917c5c400538f72f578fe87ca8898112b7a11f845cce02e03ac5a11d00

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

name: CI

on:
  push:
    branches:
      - main
      - master
  pull_request:
    branches:
      - main
      - master

jobs:
  test:
    name: '[Test] Ruby ${{matrix.ruby}} | OS ${{matrix.os}}'
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '3.2'
          - '3.1'
          - '3.0'
          # JRuby skipped for now until rubocop-rspec/-capybara are split up;
          # @see https://github.com/rubocop/rubocop-rspec/discussions/1440
          # - jruby
          - truffleruby
        os:
          - ubuntu-latest
          - macos-latest
          - windows-latest
        exclude:
          - os: windows-latest
            ruby: truffleruby
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bin/rspec

  lint:
    name: Lint
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: '3.0'
          bundler-cache: true
      - run: bin/rubocop

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vote-schulze-0.4.0 .github/workflows/ci.yml