Sha256: e91e0315751b5ba1fe9cd8d605187576e1d3defbef3b9dff45fda1347a38abf8

Contents?: true

Size: 591 Bytes

Versions: 9

Compression:

Stored size: 591 Bytes

Contents

name: Run tests, linters, etc

on:
  pull_request:
    branches:
      - '*'
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true
    - name: Run RuboCop
      run: bin/rubocop --format clang
    - name: Run RSpec tests
      run: bin/rspec --format progress
    - name: Ensure alpha version
      run: grep alpha $(find . -type f -name version.rb)
    - name: Ensure no git diff
      run: git diff --exit-code && git diff-index --quiet --cached HEAD

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fcom-0.14.0 .github/workflows/ruby.yml
fcom-0.13.0 .github/workflows/ruby.yml
fcom-0.12.1 .github/workflows/ruby.yml
fcom-0.12.0 .github/workflows/ruby.yml
fcom-0.11.0 .github/workflows/ruby.yml
fcom-0.10.0 .github/workflows/ruby.yml
fcom-0.9.0 .github/workflows/ruby.yml
fcom-0.8.0 .github/workflows/ruby.yml
fcom-0.7.1 .github/workflows/ruby.yml