Skip to content

feat: add ability to configure profile #15

feat: add ability to configure profile

feat: add ability to configure profile #15

Workflow file for this run

name: Lint
on: {push, workflow_dispatch}
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Clone project
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Rustfmt
run: cargo fmt -- --check
clippy:
runs-on: ubuntu-latest
steps:
- name: Clone project
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Clippy
run: cargo clippy -- -D warnings