Sha256: 412f9de65179bee6a5c3cd66d1d774bbc30faaa8eeea9a4db569d481fa09b9a5

Contents?: true

Size: 962 Bytes

Versions: 2

Compression:

Stored size: 962 Bytes

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: build

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 3.2
          - 3.1
          - '3.0'
          - 2.7
          - 2.6
          - 2.5
          - jruby-9.2.17.0
          - jruby-9.3.3.0

    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: RSpec Test suite
      run: bundle exec rspec
    - name: Rubocop Linter
      run: bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
singapore_cpf_calculator-1.5.1 .github/workflows/build.yml
singapore_cpf_calculator-1.5.0 .github/workflows/build.yml