Skip to content

Feat(watcher): add event retry queue #612

Feat(watcher): add event retry queue

Feat(watcher): add event retry queue #612

Workflow file for this run

name: Format
on:
workflow_dispatch:
workflow_call:
push:
branches: ["main"]
pull_request:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
timeout-minutes: 4
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-unknown-linux-gnu
profile: minimal
components: rustfmt
override: true
- name: Run cargo fmt
run: cargo fmt -- --check # Fail if code is not formatted