Skip to content

Refactor the code structure #617

Refactor the code structure

Refactor the code structure #617

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
types: [synchronize, opened, reopened, ready_for_review]
branches:
- main
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
CARGO_INCREMENTAL: false
jobs:
fmt:
if: |
github.event.pull_request.draft == false ||
github.event.action == 'ready_for_review'
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-12-10
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Run cargo fmt
run: |
cargo build --release
cargo fmt --all -- --check
clippy:
if: |
github.event.pull_request.draft == false ||
github.event.action == 'ready_for_review'
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-12-10
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Run cargo clippy
run: |
cargo build --release
cargo clippy --release --features prove_verify -- -D warnings