Sha256: 1150f241c166db5272626913d5a604d431ae5cf4cfe0adc02459b356e1ed2342
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
name: Test Suite # Run against all commits and pull requests. on: [ push, pull_request ] jobs: test_matrix: strategy: fail-fast: false matrix: os: - ubuntu - macos - windows ruby: - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - 2.6 - 2.7 - '3.0' - 3.1 - head - jruby - jruby-head - truffleruby - truffleruby-head - mingw exclude: - { os: ubuntu, ruby: jruby } - { os: ubuntu, ruby: jruby-head } - { os: ubuntu, ruby: mingw } - { os: macos, ruby: mingw } - { os: windows, ruby: truffleruby } - { os: windows, ruby: truffleruby-head } runs-on: ${{ matrix.os }}-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests run: bundle exec rake default finish: runs-on: ubuntu-latest needs: [ test_matrix ] steps: - name: Wait for status checks run: echo "All Green!"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bcrypt-3.1.17-java | .github/workflows/ruby.yml |
bcrypt-3.1.17 | .github/workflows/ruby.yml |