-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (36 loc) · 1.08 KB
/
build.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
name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
merge_group:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 40
strategy:
matrix:
mode: [dev, prod]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.mode }}
- name: install native deps
run: sudo apt update && sudo apt install clang llvm pkg-config nettle-dev fontforge
- run: cargo install cargo-udeps --locked
- run: cargo fmt -- --check
- run: ./download_font.sh
- run: cargo udeps --no-default-features --features ${{ matrix.mode }}
- uses: actions-rs/clippy-check@v1
with:
name: ${{ matrix.mode }} clippy
token: ${{ secrets.GITHUB_TOKEN }}
args: --no-default-features --features ${{ matrix.mode }}
- name: test
run: cargo test --no-default-features --features ${{ matrix.mode }}