sqly 0.5.0

A lightweight macro system on top of sqlx
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Cargo Check Build Test

on:
  push:
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  check_build_test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: cargo check
      - run: cargo build -F postgres -F serde
      - run: cargo test -F postgres -F serde --no-default-features