A decentralized music tracking and discovery platform built on AT Protocol 🎵

ci: setup github actions

+22
+22
.github/workflows/ci.yml
··· 1 + name: fmt 2 + on: 3 + push: 4 + branches: 5 + - main 6 + pull_request: 7 + branches: 8 + - main 9 + jobs: 10 + tests: 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 + - name: Run fmt 21 + run: | 22 + cargo fmt --all --check