-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (45 loc) · 1.27 KB
/
tests.yml
File metadata and controls
54 lines (45 loc) · 1.27 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
name: Tests
on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]
workflow_dispatch:
jobs:
rust_tests:
name: Rust Checks
runs-on: self-hosted
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy, rustfmt
override: true
profile: minimal
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "30.2"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ runner.os }}-rust-tests-${{ hashFiles('**/Cargo.toml') }}
restore-keys: |
cargo-${{ runner.os }}-rust-tests-
cargo-${{ runner.os }}-
- name: Check formatting
run: cargo fmt --check
- name: Check clippy
run: ./ci/check-lint.sh
- name: Check examples
run: cargo check -p orange-cli
- name: Run tests
run: cargo test --features _test-utils -- --test-threads=2
- name: Run cashu tests
run: cargo test --features _cashu-tests -- --test-threads=2