Filter blocks_processed
for EoServer
on setup
#203
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: cargo | |
on: [pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
# check if workspace is formatted, and treat unformatted code as errors. | |
fmt-check: | |
name: fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: Check Formatting | |
run: cargo fmt --all -- --check | |
- name: Install taplo-cli | |
uses: baptiste0928/cargo-install@v2.2.0 | |
with: | |
crate: taplo-cli | |
- name: Run taplo linter | |
run: taplo format --check --verbose |