-
Notifications
You must be signed in to change notification settings - Fork 12
51 lines (48 loc) · 1.05 KB
/
compile_and_test.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
name: Build and Test
on:
push:
paths:
- "src/**"
- "redis/**"
- ".github/workflows/**"
- "Cargo.toml"
branches:
- "**"
tags-ignore:
- "*.*.*"
pull_request:
paths:
- "src/**"
- ".github/workflows/**"
- "Cargo.toml"
branches:
- "**"
tags-ignore:
- "*.*.*"
jobs:
check:
name: Check
runs-on: ubuntu-latest
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Run cargo check
run: cargo check
- name: Checking style
run: cargo fmt --all -- --check
test:
name: Test
runs-on: ubuntu-latest
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Create Redis containers
run: |
cd /home/runner/work/rustis/rustis/redis/
sh ./docker_up.sh
- name: Run cargo test
run: cargo test --features pool,tokio-tls,redis-stack