Sha256: 1f019cbb66f2b23ff8bacf70adbba6b9faddafbbb30d738f59387b9417a96667
Contents?: true
Size: 646 Bytes
Versions: 1
Compression:
Stored size: 646 Bytes
Contents
--- name: test on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: entry: - { ruby: '3.2' } - { ruby: '2.7' } - { ruby: 'ruby-head', allowed-failure: true } - { ruby: 'jruby-head', allowed-failure: true } name: test (${{ matrix.entry.ruby }}) steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.entry.ruby }} bundler-cache: true - run: bundle exec rake test spinach continue-on-error: ${{ matrix.entry.allowed-failure || false }}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hyperclient-2.0.0 | .github/workflows/test.yml |