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 cargo fmt workflow

Changed files
+25
.github
workflows
+25
.github/workflows/fmt.yml
··· 1 + name: ci 2 + on: 3 + push: 4 + branches: 5 + - main 6 + pull_request: 7 + branches: 8 + - main 9 + jobs: 10 + fmt: 11 + runs-on: ubuntu-latest 12 + steps: 13 + - uses: actions/checkout@v2 14 + - name: Setup Fluent CI 15 + uses: fluentci-io/setup-fluentci@v5 16 + with: 17 + wasm: true 18 + plugin: rust 19 + args: setup 20 + env: 21 + GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} 22 + - name: Run fmt 23 + run: | 24 + type cargo 25 + cargo fmt --all --check