Sha256: 766da0f93d1d5dad1dd7fe6d57a1838a717c2f0a97630bc81a0206f4a780c2e8

Contents?: true

Size: 881 Bytes

Versions: 14

Compression:

Stored size: 881 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.7
      uses: actions/setup-ruby@v1
      with:
        ruby-version: 2.7.x

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

    # - name: SonarCloud Scan
    #   uses: sonarsource/sonarcloud-github-action@master
    #   env:
    #     GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    #     SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
        
    - 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

14 entries across 14 versions & 1 rubygems

Version Path
briard-2.9.4 .github/workflows/build.yml
briard-2.9.3 .github/workflows/build.yml
briard-2.9.2 .github/workflows/build.yml
briard-2.9.1 .github/workflows/build.yml
briard-2.9.0 .github/workflows/build.yml
briard-2.8.2 .github/workflows/build.yml
briard-2.8.1 .github/workflows/build.yml
briard-2.8.0 .github/workflows/build.yml
briard-2.7.1 .github/workflows/build.yml
briard-2.7.0 .github/workflows/build.yml
briard-2.6.7 .github/workflows/build.yml
briard-2.6.6 .github/workflows/build.yml
briard-2.6.5 .github/workflows/build.yml
briard-2.6.4 .github/workflows/build.yml