Skip to content

Commit 409e48a

Browse files
committed
Initial commit
0 parents  commit 409e48a

File tree

10 files changed

+2445
-0
lines changed

10 files changed

+2445
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
strategy:
12+
matrix:
13+
toolchain:
14+
- stable
15+
- beta
16+
# - nightly
17+
fail-fast: false
18+
services:
19+
postgres:
20+
image: postgres:latest
21+
ports:
22+
- 5432:5432
23+
steps:
24+
- uses: actions/checkout@v4
25+
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
26+
- run: cargo build
27+
- run: cargo test

.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)