Sha256: 4ae97afcc9bb7968eafee1da7832fe4d207c7f0ae7709538e579e059cb15d967

Contents?: true

Size: 861 Bytes

Versions: 1

Compression:

Stored size: 861 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.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
    - run: bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
singapore_cpf_calculator-1.4.0 .github/workflows/build.yml