Actually implement AsyncR2D2Connection (#68) #193
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
# | |
# Configuration for GitHub-based CI, based on the stock GitHub Rust config. | |
# | |
name: Rust | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
check-style: | |
runs-on: ubuntu-latest | |
steps: | |
# actions/checkout@v2 | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
- uses: actions-rs/toolchain@88dc2356392166efad76775c878094f4e83ff746 | |
with: | |
toolchain: stable | |
default: false | |
components: rustfmt | |
- name: Check style | |
run: cargo fmt -- --check | |
check-without-cockroach: | |
runs-on: ubuntu-latest | |
steps: | |
# actions/checkout@v2 | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
- name: Cargo check | |
run: cargo check --no-default-features | |
build-and-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-12 ] | |
steps: | |
# actions/checkout@v2 | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
- name: Download CockroachDB | |
run: ./tools/ci_download_cockroachdb | |
- name: Add CockroachDB to PATH | |
run: echo ./out/cockroachdb/bin >> $GITHUB_PATH | |
- name: Build | |
run: cargo build --tests --verbose | |
- name: Run tests | |
run: cargo test --verbose |