[CDN] Rate limiting - DDoS protection #5007
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: Lint | |
on: | |
push: | |
branches: | |
- 'develop' | |
- 'main' | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 1' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ (github.ref == 'refs/heads/main' && github.run_number) || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
clippy: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- name: Install Rust | |
uses: mkroening/rust-toolchain-toml@main | |
- uses: Swatinem/rust-cache@v2 | |
name: Enable Rust Caching | |
with: | |
shared-key: "lint" | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- uses: taiki-e/install-action@just | |
- name: Run clippy | |
run: | | |
just clippy | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- name: Install Rust | |
uses: mkroening/rust-toolchain-toml@main | |
- uses: taiki-e/install-action@just | |
- name: Check rustfmt | |
run: | | |
just fmt_check |