Sha256: bce81e3ba15d44e9213f6849228893b736e72863f25d12872e5e06306df6db38

Contents?: true

Size: 743 Bytes

Versions: 5

Compression:

Stored size: 743 Bytes

Contents

name: Tests

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

permissions:
  contents: read

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby-version: ['3.1', '3.2', '3.3', '3.4']
    steps:
    - uses: actions/checkout@v4
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Configure git user name, email
      run: |
        git config --global user.name $NAME
        git config --global user.email $EMAIL
      env:
        NAME: "George Costanza"
        EMAIL: "george.costanza@vandelay.com"
    - name: Run tests
      run: bundle exec rake test

Version data entries

5 entries across 5 versions & 5 rubygems

Version Path
lolcommits-lolsrv-0.6.0 .github/workflows/build.yml
lolcommits-uploldz-0.6.0 .github/workflows/build.yml
lolcommits-term_output-0.5.0 .github/workflows/build.yml
lolcommits-tranzlate-0.5.0 .github/workflows/build.yml
lolcommits-sample_plugin-0.5.0 .github/workflows/build.yml