-
-
Notifications
You must be signed in to change notification settings - Fork 47
94 lines (89 loc) · 2.29 KB
/
ci.yml
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: CI
on:
schedule: [{cron: "30 13 * * *"}]
push:
branches:
- master
pull_request:
jobs:
format:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
override: true
- run: cargo fmt -- --check
lint:
name: Clippy lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- name: Lint
run: cargo clippy --all-features -- -D warnings
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [stable, nightly]
include:
- build: stable
os: ubuntu-latest
rust: stable
- build: nightly
os: ubuntu-latest
rust: nightly
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Build and run tests on default feature set
run: cargo test
- name: Run tests on minimal feature set
run: cargo test --no-default-features
- name: Run tests on additional scram+ring feature set
run: cargo test --features server-api-ring,scram
- name: Run tests on additional scram+aws-lc-rs feature set
run: cargo test --features scram
- name: Run check on duckdb and sqlite example
run: cargo check --all-targets --features _duckdb,_sqlite,_bundled
integration:
name: Integration tests
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [test]
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: |
pip install psycopg
pip install psycopg2
- uses: turtlequeue/[email protected]
with:
babashka-version: 1.1.173
- run: ./tests-integration/test.sh
msrv:
name: MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.74"
override: true
- run: cargo build --no-default-features
- run: cargo build --all-features