Skip to content

Leasing implementation & source code refactorizations (#23) #61

Leasing implementation & source code refactorizations (#23)

Leasing implementation & source code refactorizations (#23) #61

Workflow file for this run

name: Format
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Add rustfmt component
run: rustup component add rustfmt
- name: Format check (Rust)
run: cargo fmt --all -- --check
- name: Format check (Python)
uses: psf/black@stable