Skip to content

Update ergo-lib dep #55

Update ergo-lib dep

Update ergo-lib dep #55

Workflow file for this run

name: Formatting
on:
push:
branches:
- master
- develop
pull_request:
types:
- opened
- synchronize
jobs:
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check --color always