Sha256: a205486e9744344161180ad26dcf03a17eebc4f457a64191ca72148aab06c19e
Contents?: true
Size: 653 Bytes
Versions: 2
Compression:
Stored size: 653 Bytes
Contents
name: Run RSpec tests on: workflow_call: workflow_dispatch: pull_request: env: APPLICATION_NAME: eventboss jobs: run-tests: name: Run RSpec runs-on: ubuntu-latest strategy: matrix: ruby-version: ["3.0"] steps: - uses: actions/checkout@v2 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} # runs 'bundle install' and caches installed gems automatically bundler-cache: true - name: Run tests run: bundle exec rspec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eventboss-1.9.0 | .github/workflows/rspec.yml |
eventboss-1.8.1 | .github/workflows/rspec.yml |