feat: Add application name to inputstreams and outputstreams #42
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: | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: nightly-rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: target/debug | |
key: ${{ runner.os }}-cache | |
- name: setup dependencies | |
run: sudo apt install libdbus-1-dev pkg-config libpulse-dev -y | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
- name: run code coverage | |
uses: actions-rs/[email protected] | |
with: | |
version: '0.15.0' | |
args: '-- --test-threads 1' | |
- name: upload code coverage | |
uses: actions/upload-artifact@v1 | |
with: | |
name: code-coverage-report | |
path: cobertura.xml |