Sha256: 936a8ebcdaba85e1de768b2892a93c2e591c751717f677b902c2d14e0dad2b81

Contents?: true

Size: 900 Bytes

Versions: 3

Compression:

Stored size: 900 Bytes

Contents

name: CI

on: [push, pull_request]

jobs:
  dockerfile:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Build Dockerfile
        run: docker build -t microsoft_teams_incoming_webhook_ruby_specs .

      - name: Run tests inside Docker container
        run: docker run -v $(pwd):/app/ -i microsoft_teams_incoming_webhook_ruby_specs

  tests:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0]
    env:
      CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
    steps:
      - uses: actions/checkout@v2

      - name: Install Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}

      - name: Install dependencies
        run: bundle install

      - name: Run tests with Ruby ${{ matrix.ruby-version }}
        run: bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
microsoft_teams_incoming_webhook_ruby-1.0.1 .github/workflows/ci.yml
microsoft_teams_incoming_webhook_ruby-1.0.0 .github/workflows/ci.yml
microsoft_teams_incoming_webhook_ruby-0.1.0 .github/workflows/ci.yml