Sha256: 99ded5fc26f1f74b122dbb7589b0bcdd3b733083346ca1f0a9afe8f01fad46cd
Contents?: true
Size: 838 Bytes
Versions: 1
Compression:
Stored size: 838 Bytes
Contents
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.3', '2.4', '2.5', '2.6', '2.7'] steps: - uses: actions/checkout@v2 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, # change this to (see https://github.com/ruby/setup-ruby#versioning): uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Install dependencies run: bundle install - name: Run tests run: bundle exec rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sql_tracker-1.3.2 | .github/workflows/ci.yml |