Skip to content

feat: cpu profile pyroscope #1262

feat: cpu profile pyroscope

feat: cpu profile pyroscope #1262

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize, reopened ]
branches: [ main ]
env:
SQLX_VERSION: 0.7.1
SQLX_FEATURES: "rustls,postgres"
SQLX_OFFLINE: true
RUST_TOOLCHAIN: "1.75"
jobs:
test:
name: fmt & clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
override: true
components: rustfmt, clippy
profile: minimal
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
AppFlowy-Cloud
- name: Copy and rename dev.env to .env
run: cp dev.env .env
- name: Code Gen
working-directory: ./build
run: ./code_gen.sh
- name: Rustfmt
run: |
cargo fmt --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings