Skip to content

Update Builder image #376

Update Builder image

Update Builder image #376

Workflow file for this run

name: Rustfmt
on:
push:
branches:
- main
- staging
- trying
pull_request:
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
override: true
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check