Use mutex to wait for asynchronous processing to complete #155
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: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
env: | |
TESTOPTS: --verbose | |
jobs: | |
test-linux-cassandra: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
ruby-version: ['3.0', '3.1', '3.2', '3.3'] | |
cassandra-version: ['3', '4', '5'] | |
name: Linux, Cassandra ${{ matrix.cassandra-version }}, Ruby ${{ matrix.ruby-version }} | |
steps: | |
- name: Start Cassandra v${{ matrix.cassandra-version }} | |
run: | | |
docker run --name cassandra -d -p 9042:9042 cassandra:${{ matrix.cassandra-version }} | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Prepare tests | |
run: bundle exec rake compile | |
- name: Run tests | |
run: bundle exec rake test | |
test-macos: | |
runs-on: macos-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
ruby-version: ['3.0', '3.1', '3.2', '3.3'] | |
name: macOS, Cassandra 4, Ruby ${{ matrix.ruby-version }} | |
steps: | |
- name: Start Cassandra v4 | |
run: | | |
brew install cassandra && cassandra | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Prepare tests | |
run: bundle exec rake compile | |
- name: Run tests | |
run: bundle exec rake test |