-
Notifications
You must be signed in to change notification settings - Fork 3
89 lines (86 loc) · 2.42 KB
/
rust.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
87
88
89
name: Unittest
on:
schedule:
- cron: '0 4 * * *' # runs at 4 AM UTC (13:00 JST)
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest nightly
# uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Install external dependencies
run: sudo apt-get update && sudo apt-get install -y libsndfile1-dev
- name: Run cargo check
uses: ClementTsang/[email protected]
with:
command: check
args: --verbose --all-targets --all-features
- name: Run tests
uses: ClementTsang/[email protected]
with:
command: test
args: --verbose --all-targets --all-features
- name: Run cargo check (CLI)
uses: ClementTsang/[email protected]
with:
command: check
args: --verbose --all-targets --all-features
directory: flacenc-bin
- name: Run tests (CLI)
uses: ClementTsang/[email protected]
with:
command: test
args: --verbose --all-targets --all-features
directory: flacenc-bin
lints:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest nightly
# uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Code format check
uses: ClementTsang/[email protected]
with:
command: fmt
args: --check
- name: Clippy
uses: ClementTsang/[email protected]
with:
command: clippy
args: --tests -- -D warnings
- name: Generate docs (for doc syntax checking)
run: cargo doc
- name: Code format check (CLI tools)
uses: ClementTsang/[email protected]
with:
command: fmt
args: --check
directory: flacenc-bin
- name: Clippy (CLI tools)
uses: ClementTsang/[email protected]
with:
command: clippy
args: --tests -- -D warnings
directory: flacenc-bin
- name: Clippy (with fakesimd feature)
uses: ClementTsang/[email protected]
with:
command: clippy
args: --tests --features "fakesimd" -- -D warnings