Sha256: d1cb2cc6586ee0b744289cf5499c39762950d2d04da56091958a3a4c3c820dbb
Contents?: true
Size: 890 Bytes
Versions: 3
Compression:
Stored size: 890 Bytes
Contents
# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby name: build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-16.04 strategy: matrix: ruby: [ '2.4', '2.5', '2.6', '2.7' ] name: Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v2 - uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies run: bundle install - name: Run tests run: bundle exec rake
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
camalian-0.2.0 | .github/workflows/ruby.yml |
camalian-0.1.1 | .github/workflows/ruby.yml |
camalian-0.1.0 | .github/workflows/ruby.yml |