-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (51 loc) · 1.33 KB
/
Copy pathci.yml
File metadata and controls
63 lines (51 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
jobs:
check:
name: fmt + clippy + test
runs-on: ubuntu-latest
services:
postgres:
image: postgres:18
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
options: >-
--health-cmd "pg_isready -U postgres"
--health-interval 5s
--health-timeout 3s
--health-retries 10
qdrant:
image: qdrant/qdrant:v1.17.1
ports:
- 6333:6333
- 6334:6334
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.94.1
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Wait for Qdrant
run: |
for i in $(seq 1 30); do
curl -sf http://localhost:6333/healthz && break
sleep 1
done
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-targets -- -D warnings -D clippy::disallowed_methods
- name: Test
run: cargo test --workspace