Sha256: f9c6818caadd89d59c731da2ae90a5562ef2e79fbf65d2b3f260c4a031b267bb
Contents?: true
Size: 962 Bytes
Versions: 3
Compression:
Stored size: 962 Bytes
Contents
name: ci "on": push: paths: - ".github/workflows/ci.yml" - "lib/**" - "*.gemspec" - "spec/**" - "Rakefile" - "Gemfile" - ".rubocop.yml" pull_request: branches: - main schedule: - cron: "30 4 * * *" create: jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - "3.3" - "3.2" - "3.1" steps: - uses: actions/checkout@v1 - name: Install package dependencies run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS" - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} - name: Install latest bundler run: | gem install bundler --no-document - name: Bundle install run: bundle install --jobs 4 --retry 3 - name: Run all tests run: bundle exec rake
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hanami-rspec-2.2.0.rc1 | .github/workflows/ci.yml |
hanami-rspec-2.2.0.beta2 | .github/workflows/ci.yml |
hanami-rspec-2.2.0.beta1 | .github/workflows/ci.yml |