Sha256: 8257330a8034750333acf2b994c65aa6bf66ab0c157a923beb752a512107fca1

Contents?: true

Size: 1012 Bytes

Versions: 5

Compression:

Stored size: 1012 Bytes

Contents

# Virtual environments with possible versions infos: https://github.com/actions/virtual-environments

name: CI
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2 # Step 1: github action that clones the repository
      - name: Setup Ruby # Step 2 (we gave the name 'Setup Ruby' to this step)
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.7.0
      - name: Install bundle and gems # Step 4
        run: |
          gem install bundler
          bundle install --jobs 4 --retry 3
      - name: Run tests # Step 6
        run: COVERAGE=true bundle exec rspec
  brakeman:
    name: runner / brakeman # Step 8
    runs-on: ubuntu-latest
    steps:
      - name: Check out code
        uses: actions/checkout@v1
      - name: brakeman
        uses: reviewdog/action-brakeman@v1
        with:
          brakeman_version: 4.8.2
          github_token: ${{ secrets.github_token }}
          reporter: github-pr-review # Default is github-pr-check

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bridge_api-0.3.3 .github/workflows/ci.yml
bridge_api-0.3.2 .github/workflows/ci.yml
bridge_api-0.3.1 .github/workflows/ci.yml
bridge_api-0.3.0 .github/workflows/ci.yml
bridge_api-0.2.0 .github/workflows/ci.yml