Skip to content

feat: route all update calls to synchronous v3 endpoint #1916

feat: route all update calls to synchronous v3 endpoint

feat: route all update calls to synchronous v3 endpoint #1916

Workflow file for this run

name: Format
on: [pull_request]
jobs:
test:
name: fmt
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Cache Cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-1
- name: Run Cargo Fmt
run: cargo fmt --all -- --check
env:
RUST_BACKTRACE: 1
aggregate:
name: fmt:required
runs-on: ubuntu-latest
if: ${{ always() }}
needs: test
steps:
- name: Check fmt result
if: ${{ needs.test.result != 'success' }}
run: exit 1