Skip to content

Commit 39c35fd

Browse files
committed
Initial commit
0 parents  commit 39c35fd

28 files changed

+5046
-0
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.db filter=lfs diff=lfs merge=lfs -text

.github/workflows/ci.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
on:
2+
push:
3+
pull_request:
4+
5+
env:
6+
CARGO_TERM_COLOR: always
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
env:
13+
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres
14+
15+
services:
16+
postgres:
17+
image: postgres:latest
18+
env:
19+
POSTGRES_PASSWORD: postgres
20+
ports:
21+
- 5432:5432
22+
23+
strategy:
24+
fail-fast: false
25+
matrix:
26+
toolchain:
27+
- stable
28+
- beta
29+
# - nightly
30+
31+
steps:
32+
- uses: actions/checkout@v4
33+
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
34+
- run: rustup component add rustfmt
35+
- uses: Swatinem/rust-cache@27b8ea9368cf428f0bfe41b0876b1a7e809d9844
36+
- run: cargo fmt --all -- --check
37+
- run: cargo install cargo-expand
38+
- run: cargo test --workspace
39+
- run: cargo build --benches

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target
2+
.DS_Store

0 commit comments

Comments
 (0)