Sha256: 545f1221699bbe5e7f78ee8ae60233920b3e73c083b445b4cc6ada63f493fd72

Contents?: true

Size: 855 Bytes

Versions: 11

Compression:

Stored size: 855 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:
          ruby-version: 3.3.0
          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
  yarn-audit:
    name: Yarn Audit
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
      - run: yarn audit

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
template-ruby-0.6.9 .github/workflows/ci.yml
language-ruby-0.8.4 .github/workflows/ci.yml
code-ruby-0.14.9 .github/workflows/ci.yml
code-ruby-0.14.8 .github/workflows/ci.yml
code-ruby-0.14.6 .github/workflows/ci.yml
template-ruby-0.6.8 .github/workflows/ci.yml
language-ruby-0.8.3 .github/workflows/ci.yml
code-ruby-0.14.5 .github/workflows/ci.yml
template-ruby-0.6.7 .github/workflows/ci.yml
language-ruby-0.8.2 .github/workflows/ci.yml
code-ruby-0.14.4 .github/workflows/ci.yml