-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (37 loc) · 1 KB
/
ci.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
name: CI
on:
pull_request:
branches: [ "main" ]
types: [ opened, synchronize, reopened ]
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
- name: install libasound2-dev
run: |
sudo apt-get update
sudo apt-get install libasound2-dev
- name: Print stable Rust version
run: rustc --version
- name: Formatter
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run examples
run: |
cargo build --example beep
cargo build --example beep_imaadpcm
cargo build --example beep_imaadpcm_stereo
cargo build --example print_sample_values
cargo build --example read_wav_no_std
cargo build --example read_ima_adpcm_no_std