Sha256: da039cd26cf79d19c757c726b40232f763ac5740621fd5f8a24ac01768027586
Contents?: true
Size: 668 Bytes
Versions: 2
Compression:
Stored size: 668 Bytes
Contents
name: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: entry: - { ruby: "2.7" } - { ruby: "3.0" } - { ruby: "3.1" } - { ruby: ruby-head, ignore: true } - { ruby: jruby-head, ignore: true } name: test (ruby=${{ matrix.entry.ruby }}) steps: - uses: actions/checkout@v2 - name: Install Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.entry.ruby }} - name: Run Tests continue-on-error: ${{ matrix.entry.ignore || false }} run: | bundle install bundle exec rspec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
iex-ruby-client-2.1.0 | .github/workflows/test.yml |
iex-ruby-client-2.0.0 | .github/workflows/test.yml |