Skip to content

Remove async-websocket from external tests. #503

Remove async-websocket from external tests.

Remove async-websocket from external tests. #503

Workflow file for this run

name: Development
on: [push, pull_request]
jobs:
test:
name: ${{matrix.ruby}} on ${{matrix.os}}
runs-on: ${{matrix.os}}-latest
continue-on-error: ${{matrix.experimental}}
strategy:
matrix:
os:
- ubuntu
- macos
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
experimental: [false]
env: [""]
include:
- os: ubuntu
ruby: truffleruby
experimental: true
- os: ubuntu
ruby: jruby
env: JRUBY_OPTS="--debug -X+O"
experimental: true
- os: ubuntu
ruby: head
experimental: true
- os: ubuntu
ruby: "3.2"
env: COVERAGE=PartialSummary
experimental: true
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run tests
timeout-minutes: 5
run: ${{matrix.env}} bundle exec rspec
- name: Run external tests
timeout-minutes: 5
if: matrix.experimental == false && matrix.os == 'ubuntu'
run: ${{matrix.env}} bundle exec bake external