Skip to content

bad fmt

bad fmt #447

Workflow file for this run

on: [push, pull_request]
name: ci
jobs:
test:
name: clippy + tests + docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: run CI checks
run: bash scripts/ci.sh test
shell: bash
rustfmt:
name: rustfmt (nightly)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- name: run CI checks
run: bash scripts/ci.sh rustfmt
shell: bash