Sha256: abef415ba89fc97020b1c351d35a3d1418371fc8567f8ec8aec771697896aab8
Contents?: true
Size: 547 Bytes
Versions: 2
Compression:
Stored size: 547 Bytes
Contents
name: CI on: [push] jobs: test: name: Test runs-on: ubuntu-latest strategy: matrix: image: [ 'ruby:2.7', 'ruby:3.0', 'ruby:3.1' ] container: image: ${{ matrix.image }} steps: - uses: actions/checkout@v2 - name: Setup bundler run: gem install bundler - name: bundle install run: bundle install --jobs=4 --retry=3 --path=./vendor - name: Show versions run: | ruby --version bundle --version - name: test run: bundle exec rake spec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
danger-textlint-2.0.4 | .github/workflows/ci.yml |
danger-textlint-2.0.3 | .github/workflows/ci.yml |