Sha256: 1501aa2ded6b28dd763c619bcf50e51e08448c837586e87a5a2b6184880b6f7e
Contents?: true
Size: 568 Bytes
Versions: 1
Compression:
Stored size: 568 Bytes
Contents
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ["3.0", "2.7", "2.6", "2.5", "ruby-head"] steps: - uses: actions/checkout@v2 - name: Set up Ruby ${{ matrix.ruby-version }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: bundle exec rake ci
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
generative-0.2.5 | .github/workflows/ci.yml |