Sha256: e123289741d187d94a1438176e07e3883c09c05adf0f7b91e573e9ae24b7b595

Contents?: true

Size: 973 Bytes

Versions: 7

Compression:

Stored size: 973 Bytes

Contents

name: CI - Checks
on:
  push:
    branches-ignore:
      - master

jobs:

  lint:
    name: Linters verification
    runs-on: ubuntu-18.04

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Set up ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.7.2
          bundler-cache: true # Run "bundle install", and cache the result automatically.

      - name: Run security checks
        run: bundle exec bundler-audit --update

      - name: Run rubocop
        run: bundle exec rubocop

  test:
    name: Run tests
    needs: lint
    runs-on: ubuntu-18.04

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Set up ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.7.2
          bundler-cache: true

      - name: Run tests
        run: bundle exec rake

  ci-workflow:
    needs: test
    runs-on: ubuntu-18.04
    steps:
      - run: exit 0

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
docx-builder-0.6.0 .github/workflows/ci.yaml
docx-builder-0.5.0 .github/workflows/ci.yaml
docx-builder-0.4.1 .github/workflows/ci.yaml
docx-builder-0.4.1.pre.alpha .github/workflows/ci.yaml
docx-builder-0.4.0 .github/workflows/ci.yaml
docx-builder-0.3.1 .github/workflows/ci.yaml
docx-builder-0.3.0 .github/workflows/ci.yaml