Add wait #13
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 | |
jobs: | |
test-linux: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
ruby-version: ['3.0', '3.1', '3.2'] | |
name: Linux, Ruby ${{ matrix.ruby-version }} | |
steps: | |
- name: Start Cassandra v4 | |
run: | | |
docker run --name cassandra -d -p 9042:9042 cassandra:4 | |
- name: Wait for Cassandra to start | |
run: | | |
sleep 30 | |
- uses: actions/checkout@v4 | |
- name: Cache built objects | |
uses: actions/cache@v3 | |
with: | |
path: ./tmp | |
key: v1-${{ runner.os }} | |
restore-keys: | | |
v1-${{ runner.os }} | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Prepare tests | |
run: bundle exec rake compile | |
- name: Run tests | |
run: bundle exec rake test |