This repository was archived by the owner on Oct 19, 2024. It is now read-only.
Integrate with Aditude API for payouts (#965) #2184
This file contains hidden or 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: Code quality | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| SQLX_OFFLINE: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| components: rustfmt, clippy | |
| - name: Cache build artifacts | |
| id: cache-build | |
| uses: actions/cache@v2 | |
| with: | |
| path: target/** | |
| key: ${{ runner.os }}-build-cache | |
| - name: Annotate commit with clippy warnings | |
| uses: actions-rs/clippy-check@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| args: --all-features | |
| env: | |
| SQLX_OFFLINE: true |