feature(integration-tests): Query Paging Tests #45
Workflow file for this run
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: CCM tests | |
on: | |
push: | |
branches: | |
- main | |
- 'branch-*' | |
pull_request: | |
branches: | |
- '**' | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: full | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install scylla-ccm | |
run: pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip | |
- name: Run CCM command to create the ~/.ccm dir | |
continue-on-error: true | |
run: ccm status | |
- name: Update rust toolchain | |
run: rustup update | |
- name: Run CCM tests | |
run: make ccm-test |