Sha256: 89b6e343e0b30a7f127004f8f88c69da51c655627303e80e81a64ad9d28940bf
Contents?: true
Size: 1 KB
Versions: 6
Compression:
Stored size: 1 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: Tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest container: image: welaika/wordmove:latest steps: - uses: actions/checkout@v2 - name: Cache gems uses: actions/cache@v2 with: path: .vendor/bundle key: wordmove-${{ hashFiles('wordmove.gemspec') }} - name: Install bundler run: | echo $(pwd) bundle config set path .vendor/bundle gem install bundler:2.3.3 - name: Install dependencies run : bundle install - name: Run tests run: bundle exec rake
Version data entries
6 entries across 6 versions & 1 rubygems