Skip to content

FEAT: impl assign for ArelActiveModel #112

FEAT: impl assign for ArelActiveModel

FEAT: impl assign for ArelActiveModel #112

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