Skip to content

.github/workflows/rust.yml: use fixed version of cargo-sort (#1597) #1

.github/workflows/rust.yml: use fixed version of cargo-sort (#1597)

.github/workflows/rust.yml: use fixed version of cargo-sort (#1597) #1

Workflow file for this run

name: ScyllaDB tests
on:
push:
branches: [ main ]
pull_request:
branches:
- "**"
paths-ignore:
- 'CONTRIBUTING.md'
- 'INSTALL.md'
- 'docker/**'
- 'kubernetes/**'
workflow_dispatch:
# This allows a subsequently queued workflow run to interrupt previous runs on pull-requests
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.run_id }}'
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUST_BACKTRACE: short
RUSTFLAGS: "-D warnings"
RUSTUP_MAX_RETRIES: 10
RUST_LOG: warn
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest-8-cores
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: Twey/setup-rust-toolchain@v1
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build example applications
run: |
cd examples
cargo build --locked --release --target wasm32-unknown-unknown
- name: Build
run: |
cargo build --locked --features scylladb
- name: Setup local ScyllaDB instance
run: |
docker run --name my_scylla_container -d -p 9042:9042 scylladb/scylla
- name: Run ScyllaDB tests
run: |
cargo test --locked --features scylladb -- scylla