-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (21 loc) · 741 Bytes
/
rust.yml
File metadata and controls
27 lines (21 loc) · 741 Bytes
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
name: Rust
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install speech-dispatcher development headers
run: sudo apt-get update && sudo apt-get install -y libspeechd-dev
- name: Install ALSA development libraries
run: sudo apt-get update && sudo apt-get install -y libasound2-dev
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose -- --skip test_bacon_help --skip test_bacon_version --skip testgen_ex_builtin --skip test_sample_count_in_testgen_ex_project --skip test_single_example_functionality