Sha256: 14f7365c576717d6ffa4cf197178108aca86fbd2e8a9f258c02c7ed6f2093f4b

Contents?: true

Size: 547 Bytes

Versions: 3

Compression:

Stored size: 547 Bytes

Contents

name: CI

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

permissions:
  contents: read

jobs:
  test:

    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: [ '3.3.0' ]

    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Check Rubocop compliance
      run: bundle exec rubocop --format github
    - name: Run tests
      run: bundle exec rspec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
the-free-dictionary-0.0.3 .github/workflows/ci.yml
the-free-dictionary-0.0.2 .github/workflows/ci.yml
the-free-dictionary-0.0.1 .github/workflows/ci.yml