Sha256: 207975ba842ba2bcab39df7cad320b5c3703aca62d9dcc10259c21cb7cd90de2

Contents?: true

Size: 830 Bytes

Versions: 17

Compression:

Stored size: 830 Bytes

Contents

name: Build Ruby Gem

on:
  push:
    branches:
      - "master"
jobs:
  build:
    runs-on: ubuntu-latest
    env:
      SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby 2.6
      uses: actions/setup-ruby@v1
      with:
        ruby-version: 2.6.x

    - name: Build and test
      run: |
        gem install bundler
        bundle install
        bundle exec rspec

    - name: Publish code coverage
      uses: paambaati/codeclimate-action@v2.7.4
      env:
        CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

    - name: Notify Slack
      uses: adamkdean/simple-slack-notify@1.0.4
      with:
        channel: '#ops'
        username: 'GitHub Actions'
        color: 'good'
        text: 'A new version of the bolognese gem has been built.'

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
bolognese-1.9.18 .github/workflows/build.yml
bolognese-1.9.17 .github/workflows/build.yml
bolognese-1.9.14 .github/workflows/build.yml
bolognese-1.9.13 .github/workflows/build.yml
bolognese-1.9.12 .github/workflows/build.yml
bolognese-1.9.11 .github/workflows/build.yml
bolognese-1.9.10 .github/workflows/build.yml
bolognese-1.9.9 .github/workflows/build.yml
bolognese-1.9.8 .github/workflows/build.yml
bolognese-1.9.7 .github/workflows/build.yml
bolognese-1.9.6 .github/workflows/build.yml
bolognese-1.9.5 .github/workflows/build.yml
bolognese-1.9.4 .github/workflows/build.yml
bolognese-1.9.3 .github/workflows/build.yml
bolognese-1.9.2 .github/workflows/build.yml
bolognese-1.9 .github/workflows/build.yml
bolognese-1.8.18 .github/workflows/build.yml