Sha256: e8012b297449d45be30ef27250c9e85d9b160274aa7862a0a214ae0f5cad775a
Contents?: true
Size: 1.17 KB
Versions: 19
Compression:
Stored size: 1.17 KB
Contents
name: Testing on: push: branches: - '*' - '!master' jobs: test: name: Testing runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v1 - uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Install dependencies run: | gem install bundler bundler install - name: Run tests run: bundle exec rspec spec --pattern **/spec_*.rb - name: Notify slack success if: success() env: SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} uses: voxmedia/github-action-slack-notify-build@v1.1.1 with: message_id: ${{ steps.slack.outputs.message_id }} channel: github-actions status: SUCCESS color: good - name: Notify slack fail if: failure() env: SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} uses: voxmedia/github-action-slack-notify-build@v1.1.1 with: message_id: ${{ steps.slack.outputs.message_id }} channel: github-actions status: FAILED color: danger
Version data entries
19 entries across 19 versions & 1 rubygems