Browse and listen to thousands of radio stations across the globe right from your terminal ๐ŸŒŽ ๐Ÿ“ป ๐ŸŽตโœจ
radio rust tokio web-radio command-line-tool tui

ci: add test workflow

ci: install build deps

ci: install build deps

Changed files
+24
.github
workflows
+24
.github/workflows/ci.yml
··· 1 + # Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions 2 + 3 + name: tests 4 + on: 5 + push: 6 + branches: 7 + - master 8 + pull_request: 9 + branches: 10 + - master 11 + jobs: 12 + tests: 13 + runs-on: ubuntu-latest 14 + steps: 15 + - uses: actions/checkout@v2 16 + - name: Install build dependencies 17 + run: | 18 + sudo apt-get update 19 + sudo apt-get install -y build-essential libasound2-dev protobuf-compiler 20 + - name: Setup Fluent CI 21 + uses: fluentci-io/setup-fluentci@v5 22 + - name: Run tests 23 + run: | 24 + fluentci run --wasm rust test