Sha256: 160d40ee772eb57ac03866a54d3a4a3f7c5a98825124f4d46bd785e606b0b1d6
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.5', 'ruby:2.6', 'ruby:2.7' ] 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.2 | .github/workflows/ci.yml |
danger-textlint-2.0.1 | .github/workflows/ci.yml |