Sha256: 3c81808cb835099debf980f8e2d2997e18d78778bdf42ed29bc22766a7a5b299
Contents?: true
Size: 1.22 KB
Versions: 2
Compression:
Stored size: 1.22 KB
Contents
name: CI on: push jobs: test: name: Ruby ${{ matrix.ruby }} on ubuntu-18.04 runs-on: ubuntu-18.04 strategy: fail-fast: false matrix: # Windows on macOS builds started failing, so they are disabled for noew ruby: [2.4, 2.5, 2.6, 2.7] # platform: [windows-2019, macOS-10.14, ubuntu-18.04] # exclude: # The Windows environment does not support older Ruby versions. We only test against the latest version # - platform: windows-2019 # ruby: 2.3 # - platform: windows-2019 # ruby: 2.4 # - platform: windows-2019 # ruby: 2.5 # On macOS, we only test against the Ruby version macOS ships with (2.3) # - platform: macOS-10.14 # ruby: 2.4 # - platform: macOS-10.14 # ruby: 2.5 # - platform: macOS-10.14 # ruby: 2.6 steps: - uses: actions/checkout@v1 - name: Setup Ruby uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies run: gem install bundler && bundle install --jobs 4 --retry 3 - name: Run test suite run: rake test - name: Run Rubocop run: bin/rubocop
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
statsd-instrument-3.0.2 | .github/workflows/ci.yml |
statsd-instrument-3.0.1 | .github/workflows/ci.yml |