Skip to content

Reduce risk of losing data due to garbage collection or restarts #6400

Reduce risk of losing data due to garbage collection or restarts

Reduce risk of losing data due to garbage collection or restarts #6400

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- release-*
tags:
# YYYYMMDD
- "20[0-9][0-9][0-1][0-9][0-3][0-9]*"
pull_request:
branches:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
RUST_LOG: info,libp2p=off
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout Repository
- uses: Swatinem/rust-cache@v2
name: Enable Rust Caching
- name: Format Check
run: cargo fmt -- --check
- name: Check (embedded-db)
run: cargo clippy --workspace --features "embedded-db testing" --all-targets -- -D warnings
- name: Check (postgres)
run: cargo clippy --workspace --features testing --all-targets -- -D warnings