Sha256: 35b105ca14f2cd3ebd62359492268d4e6768a74bb670b46b40c942d755f5b5cd

Contents?: true

Size: 706 Bytes

Versions: 3

Compression:

Stored size: 706 Bytes

Contents

name: Unit Tests
on: [push, pull_request]
jobs:
  docker-rspec:
    runs-on:
      - ubuntu-18.04
    strategy:
      matrix:
        ruby:
          - 2.7
          - 2.6
          - 2.5
          - 2.4
      fail-fast: true
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: install bundler
        run: |
          gem install bundler -v '~> 1.17.3'
          bundle update
      - name: install rpm
        run: |
          set -x
          sudo apt-get update -y
          sudo apt-get install -y rpm
      - name: spec tests
        run: CI=true bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dockly-4.4.1 .github/workflows/unit_test.yml
dockly-4.4.0 .github/workflows/unit_test.yml
dockly-4.3.0 .github/workflows/unit_test.yml