Sha256: 6179dcf1f0bb953c5cf9b8626c06f5904e7c4f106b2e3ef0bef4cef875697d53

Contents?: true

Size: 822 Bytes

Versions: 7

Compression:

Stored size: 822 Bytes

Contents

name: CI
on: push
jobs:
  bundler-audit:
    name: Bundler Audit
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
      - run: bin/bundler-audit check --update
  rspec:
    name: Test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
      - run: bin/test
  rubocop:
    name: Rubocop
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
      - run: bin/rubocop
  npm-audit:
    name: npm Audit
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
      - run: npm audit

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
template-ruby-1.1.2 .github/workflows/ci.yml
language-ruby-1.1.2 .github/workflows/ci.yml
code-ruby-1.1.3 .github/workflows/ci.yml
code-ruby-1.1.1 .github/workflows/ci.yml
template-ruby-1.1.0 .github/workflows/ci.yml
language-ruby-1.1.0 .github/workflows/ci.yml
code-ruby-1.1.0 .github/workflows/ci.yml