Sha256: 6b44f04739de22d53718f9e06d09aed9464ab43c8aa27d8dbab7527f9a03c72f
Contents?: true
Size: 1.52 KB
Versions: 2
Compression:
Stored size: 1.52 KB
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: jobs: rspec: runs-on: ubuntu-latest env: BUNDLE_JOBS: 4 BUNDLE_RETRY: 3 strategy: fail-fast: false matrix: ruby: [2.6, 2.7] gemfile: [ "gemfiles/rails52.gemfile", "gemfiles/rails60.gemfile", ] steps: - name: Install packages run: | sudo apt update -y sudo apt install -y libsqlite3-dev - uses: actions/checkout@v2 - uses: actions/cache@v1 with: path: /home/runner/bundle key: bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}-${{ hashFiles(matrix.gemfile) }}-${{ hashFiles('**/*.gemspec') }} restore-keys: | bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}- - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies run: | bundle config path /home/runner/bundle bundle config --global gemfile ${{ matrix.gemfile }} bundle install bundle update bundle clean - name: Run rspec run: bundle exec rspec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
activestorage-validator-0.1.5 | .github/workflows/rspec.yml |
activestorage-validator-0.1.4 | .github/workflows/rspec.yml |