-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (75 loc) · 2.05 KB
/
Copy pathtest-libspot.yaml
File metadata and controls
90 lines (75 loc) · 2.05 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
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
name: Test libspot (FFI)
on:
push:
branches: [ main, master ]
paths:
- 'crates/libspot/**'
- '.github/workflows/test-libspot.yaml'
pull_request:
branches: [ main, master ]
paths:
- 'crates/libspot/**'
- '.github/workflows/test-libspot.yaml'
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
test-libspot:
name: Test libspot (FFI bindings)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
crates/libspot/target
key: ${{ runner.os }}-libspot-cargo-${{ hashFiles('crates/libspot/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-libspot-cargo-
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential pkg-config
- name: Build C library
run: |
cd crates/libspot/libspot
make clean
make
- name: Check formatting (libspot)
run: |
cd crates/libspot
cargo fmt --all -- --check
- name: Run clippy (libspot)
run: |
cd crates/libspot
cargo clippy --all-targets --all-features -- -D warnings
- name: Build libspot
run: |
cd crates/libspot
cargo build --verbose
- name: Run unit tests (libspot)
run: |
cd crates/libspot
cargo test --lib --verbose
- name: Run integration tests (libspot)
run: |
cd crates/libspot
cargo test --test integration --verbose
- name: Run basic example test (libspot)
run: |
cd crates/libspot
cargo test --test basic_example test_basic_example_behavior --verbose
- name: Run doc tests (libspot)
run: |
cd crates/libspot
cargo test --doc --verbose