Skip to content

FEAT: ActiveValue support Add trait #116

FEAT: ActiveValue support Add trait

FEAT: ActiveValue support Add trait #116

Workflow file for this run

name: Rust
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --features sqlite --verbose
- name: Run tests with sqlite features
run: cargo test --features sqlite --verbose
- name: Run tests with mysql features
run: cargo test --features mysql --verbose
- name: Run tests with postgres features
run: cargo test --features postgres --verbose