Sha256: 629dc95becc5d24eb60c09b230518508037268b2d8cbfce96f2592a69bcc206b

Contents?: true

Size: 723 Bytes

Versions: 3

Compression:

Stored size: 723 Bytes

Contents

name: CI

on:
  push:
    branches: [ '**' ]
  pull_request:
    branches: [ main ]

jobs:
  test:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rake ci
        env:
          REGION: uscentral
          SUBSCRIPTION_KEY: k3ah8ztrc4ojeh98r05zh7v6x9w62lqp
      - name: Coveralls
        uses: coverallsapp/github-action@master
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          path-to-lcov: "./coverage/lcov.info"
      - name: Rubocop
        run: rubocop

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
azure_stt-0.2.0 .github/workflows/ci.yml
azure_stt-0.1.1 .github/workflows/ci.yml
azure_stt-0.1.0 .github/workflows/ci.yml