init it #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
wsdirector: | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }} | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_JOBS: 4 | |
BUNDLE_RETRY: 3 | |
CI: true | |
services: | |
redis: | |
image: redis:7.0-alpine | |
ports: ["6379:6379"] | |
options: --health-cmd="redis-cli ping" --health-interval 1s --health-timeout 3s --health-retries 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
server: ["puma", "anycable"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
bundler-cache: true | |
- name: Run server | |
run: | | |
bundle exec bento --${{ matrix.server }} & | |
bin/wait_tcp 8080 | |
- name: Run echo scenario | |
run: | | |
SCENARIO=echo make wsdirector | |
- name: Run broadcast scenario | |
run: | | |
SCENARIO=broadcast make wsdirector |