Skip to content

feat: multi-action transaction support with retries #27

feat: multi-action transaction support with retries

feat: multi-action transaction support with retries #27

Workflow file for this run

name: Rust Checks
on:
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup FoundationDB
uses: foundationdb-rs/[email protected]
with:
version: "7.3.27"
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy, rustfmt
- name: Setup buf
uses: bufbuild/[email protected]
- name: Setup protoc
run: sudo apt-get install protobuf-compiler
- name: Generate buf
run: cd crates/valv && buf generate
- name: Run Clippy
run: cargo clippy --all
- name: Run fmt
run: cargo fmt --all -- --check