-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (68 loc) · 1.97 KB
/
backend.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
name: Rust
permissions:
checks: write
pull-requests: write
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
DATABASE_URL: sqlite://ci.db?mode=rwc
jobs:
build:
strategy:
matrix:
project: ["backend", "protocol", "simulator"]
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./${{ matrix.project }}
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
workspaces: "${{ matrix.project }} -> target"
cache-all-crates: true
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Install sqlx-cli
run: cargo install sqlx-cli --no-default-features --features sqlite
if: matrix.project != 'protocol'
- name: Setup local db
run: |
cargo sqlx db create
cargo sqlx migrate run
if: matrix.project != 'protocol'
working-directory: backend
- name: Build
run: cargo build --verbose
- name: Run backend
run: |
cargo build
cargo run -- --simulator &
working-directory: backend
if: matrix.project == 'simulator'
- name: Run tests
run: cargo test --verbose
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true
- name: Run simulator
run: cargo run
if: matrix.project == 'simulator'
- uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
github_token: ${{ secrets.GITHUB_TOKEN }}
clippy_flags: --all-features --all-targets -- -Dwarnings
workdir: ./${{ matrix.project }}
fail_on_error: true
- name: Check formatting
run: cargo fmt --all -- --check