Sha256: 4a135e680f8088cd9bef2826f822c138fae31a94d25a7b1a164da89137a71383
Contents?: true
Size: 551 Bytes
Versions: 1
Compression:
Stored size: 551 Bytes
Contents
name: CI on: [push] jobs: test: name: Test runs-on: ubuntu-latest strategy: matrix: image: [ 'ruby:2.4', 'ruby:2.5', 'ruby:2.6' ] container: image: ${{ matrix.image }} steps: - uses: actions/checkout@master - 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
danger-textlint-2.0.0 | .github/workflows/ci.yml |