Sha256: 2e24f287e312a1fcebf0a6b9b0cbf1b0679a5ff48b87ee7cb3ff82334f34913a
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
name: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: entry: - { ruby: "2.7" } - { ruby: "2.7", concurrency: async-websocket } - { ruby: "3.0" } - { ruby: "3.1" } - { ruby: ruby-head, ignore: true } - { ruby: jruby-head, ignore: true } name: test (ruby=${{ matrix.entry.ruby }}, concurrency=${{ matrix.entry.concurrency || 'none' }}) steps: - name: Checkout uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.entry.ruby }} bundler-cache: true - name: Set Concurrency run: | if [[ ! -z "${{ matrix.entry.concurrency }}" ]]; then echo "Setting concurrency to ${{ matrix.entry.concurrency }}." echo "CONCURRENCY=${{ matrix.entry.concurrency }}" >> $GITHUB_ENV fi - name: Run Tests continue-on-error: ${{ matrix.entry.ignore || false }} env: RACK_ENV: test run: | bundle install bundle exec rake
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-2.0.0 | .github/workflows/test.yml |