Sha256: 34610d16cef94a67312179e607d916f6a49dab1b9b956c9e094b20a18d07d425

Contents?: true

Size: 484 Bytes

Versions: 5

Compression:

Stored size: 484 Bytes

Contents

name: CI Pipeline

on:
  pull_request:
    types:
      - opened
      - synchronize
  push:
    branches: [main]

jobs:
  ci_task:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Run rubocop and tests
      run: |
        docker pull ohdeployer/ohloh_scm:latest
        cmd='/etc/init.d/ssh start; bundle exec rubocop; rake test 2> /dev/null'
        docker run --rm -P -v $(pwd):/home/app/ohloh_scm -i ohdeployer/ohloh_scm:latest /bin/sh -c "$cmd"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ohloh_scm-4.0.5 .github/workflows/ci.yml
ohloh_scm-4.0.4 .github/workflows/ci.yml
ohloh_scm-4.0.3 .github/workflows/ci.yml
ohloh_scm-4.0.2 .github/workflows/ci.yml
ohloh_scm-4.0.1 .github/workflows/ci.yml