ring buffers finished #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Linux dependencies | |
run: sudo apt-get install -y libasound2-dev ; sudo apt-get install -y libwebkit2gtk-4.0 | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --verbose -F github-actions-all-features | |
- name: Build w/o features | |
run: cargo build --verbose --no-default-features -F github-actions-hack | |
- name: Test documentation | |
run: cargo doc --examples --verbose -F github-actions-all-features | |
- name: Run tests | |
run: cargo test --verbose -F github-actions-all-features | |
- name: Lint | |
run: cargo clippy --examples --verbose -F github-actions-all-features |