Skip to content

fix!: Don't enable smart punctuation and heading attributes #16

fix!: Don't enable smart punctuation and heading attributes

fix!: Don't enable smart punctuation and heading attributes #16

Workflow file for this run

name: build
on: [push]
jobs:
test:
strategy:
matrix:
toolchain: [stable, beta, nightly]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
override: true
- name: Rustfmt
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy -- -D warnings -D clippy::use-self -D clippy::items-after-statements -D clippy::if-not-else
- name: Test
run: cargo test --workspace --locked