Sha256: 1734a8b7246de86267bea368cce29ff07fbcce65ed4eb9edd8e3da9552723d93
Contents?: true
Size: 607 Bytes
Versions: 3
Compression:
Stored size: 607 Bytes
Contents
name: CI on: [ push, pull_request ] jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - '3.0' - '3.1' - '3.2' - jruby - truffleruby name: Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Install dependencies run: bundle install --jobs 4 --retry 3 - name: Run tests run: bundle exec rake test
Version data entries
3 entries across 3 versions & 3 rubygems
Version | Path |
---|---|
ronin-code-sql-2.0.0 | .github/workflows/ruby.yml |
ronin-web-spider-0.1.0 | .github/workflows/ruby.yml |
ronin-repos-0.1.0 | .github/workflows/ruby.yml |