Skip to content

feat: added the full support to query drivers. TODO: refactor sql que… #17

feat: added the full support to query drivers. TODO: refactor sql que…

feat: added the full support to query drivers. TODO: refactor sql que… #17

Workflow file for this run

---
name: Rust Continuous Integration
on: push
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
name: CI
steps:
- uses: actions/checkout@v3
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Lint
run: |
cargo fmt -- --check
cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose --release
- name: Run tests
run: |
cargo check
cargo test --verbose --all