Sha256: 18cd91a270bf85d524bfd74c277e7f70605d3e37695c465c706128ecbbfdbcd0
Contents?: true
Size: 772 Bytes
Versions: 2
Compression:
Stored size: 772 Bytes
Contents
name: CI on: [ push, pull_request ] jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - 2.6 - 2.7 - 3.0 - 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 }} - name: Install libxml2-dev and libxslt1-dev run: | sudo apt update -y && \ sudo apt install -y --no-install-recommends --no-install-suggests libxml2-dev libxslt1-dev - 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 & 2 rubygems
Version | Path |
---|---|
ruby-ncrack-0.1.0 | .github/workflows/ruby.yml |
ruby-nikto-0.1.0 | .github/workflows/ruby.yml |