Skip to content

chore: release: v1.6.6 #703

chore: release: v1.6.6

chore: release: v1.6.6 #703

Workflow file for this run

name: Rust CI
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
env:
CARGO_INCREMENTAL: 0
jobs:
rust:
name: Rust CI
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v3
- name: Setup | Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt
- name: Setup | Cache
uses: Swatinem/rust-cache@v1
- name: Build | Format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Build | Check
uses: actions-rs/cargo@v1
with:
command: check
args: --workspace --locked
- name: Build | Lint
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --locked --all-targets --all-features