Sha256: d73f34ae832dfd913413760aaba568ccfb311d11ef0af82896474004dad9ad08
Contents?: true
Size: 609 Bytes
Versions: 2
Compression:
Stored size: 609 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ronin-web-1.0.0 | .github/workflows/ruby.yml |
ronin-web-1.0.0.beta4 | .github/workflows/ruby.yml |