Sha256: 1d74f33238187df8366d1b6307c3d5d99ab1604deb3fa14fe233e3eddfd6adef

Contents?: true

Size: 494 Bytes

Versions: 1

Compression:

Stored size: 494 Bytes

Contents

name: CI
on: [push, pull_request]
jobs:
  lint-and-test:
    name: Linting, specs and coverage
    runs-on: ubuntu-latest
    steps:
    - name: Checkout code
      uses: actions/checkout@v4
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true
    - name: Run linting
      run: bin/standardrb
    - name: Run specs
      run: bin/rspec
    - name: Run coverage report
      uses: coverallsapp/github-action@v2
      with:
        fail-on-error: false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mail-notify-2.0.0 .github/workflows/ci.yml