Skip to content

move forward rpc service #13

move forward rpc service

move forward rpc service #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches:
- main
- '**'
env:
CARGO_TERM_COLOR: always
IMAGE_NAME: preconf_mono
jobs:
rustfmt:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install nightly toolchain with rustfmt available
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- name: Run cargo fmt
uses: actions-rs/cargo@v1
continue-on-error: true # WARNING: only for this example, remove it!
with:
command: fmt
args: --all -- --check