Added method to get the active state of streams #40
Workflow file for this run
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: | |
test-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install deps | |
run: | | |
sudo apt update | |
sudo apt-get install -y --no-install-recommends libsoapysdr-dev libclang-dev llvm-dev pkg-config | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --all-features | |
- name: Run tests | |
run: cargo test | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
shell: bash | |
run: | | |
curl -L https://downloads.myriadrf.org/builds/PothosSDR/PothosSDR-2021.07.25-vc16-x64.exe -o pothossdr.exe | |
7z x -opothos -y pothossdr.exe | |
echo "${{github.workspace}}/pothos/bin" >> $GITHUB_PATH | |
echo "C:\\msys64\\mingw64\\bin" >> $GITHUB_PATH | |
- name: Build | |
shell: bash | |
run: cargo build --all-features | |
- name: Run tests | |
shell: bash | |
run: cargo test |