feat: Cancel historical backfill process before starting anew #403
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- "indexer/**" | |
pull_request: | |
branches: [ main, stable ] | |
paths: | |
- "indexer/**" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run check | |
working-directory: ./indexer | |
run: cargo check | |
rustfmt: | |
name: rustfmt | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.68.0 | |
override: true | |
profile: minimal | |
components: rustfmt | |
- name: Check formatting | |
working-directory: ./indexer | |
run: | | |
cargo fmt -- --check | |
rustclippy: | |
name: rustclippy | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.68.0 | |
override: true | |
profile: minimal | |
components: clippy | |
- name: Clippy check | |
working-directory: ./indexer | |
run: | | |
cargo clippy |