Skip to content

Run dprint via RTA on CI #34

Run dprint via RTA on CI

Run dprint via RTA on CI #34

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.74"
profile: minimal
override: true
components: rustfmt, clippy
- uses: Swatinem/[email protected]
- run: make test
- run: make fix
- run: git diff HEAD --exit-code --color