Sha256: 2e962314a3a7df7b55535f73bcac7ede9c7de7f25440583bb08086ed7c4dadbb

Contents?: true

Size: 835 Bytes

Versions: 10

Compression:

Stored size: 835 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 briard gem has been built.'

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
briard-2.2.7 .github/workflows/build.yml
briard-2.2.6 .github/workflows/build.yml
briard-2.2.4 .github/workflows/build.yml
briard-2.2.3 .github/workflows/build.yml
briard-2.2.1 .github/workflows/build.yml
briard-2.2 .github/workflows/build.yml
briard-2.1 .github/workflows/build.yml
briard-2.0.2 .github/workflows/build.yml
briard-2.0.1 .github/workflows/build.yml
briard-2.0 .github/workflows/build.yml