-
Notifications
You must be signed in to change notification settings - Fork 3
46 lines (36 loc) · 1.01 KB
/
tests.yml
File metadata and controls
46 lines (36 loc) · 1.01 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
name: Tests
on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust_tests:
name: Rust Checks
runs-on: self-hosted
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "30.2"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: Swatinem/rust-cache@v2.7.8
- 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