1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00

chore: remove lint

This commit is contained in:
lencx 2023-01-22 20:17:51 +08:00
parent 6a7eabf5cb
commit f1ec7c6495

View File

@ -1,31 +0,0 @@
name: Lint CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v3
- name: Setup | Ubuntu dependencies
run: sudo apt install libasound2-dev libudev-dev pkg-config
- name: Setup | Toolchain (clippy, rustfmt)
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Lint | Clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
- name: Lint | Rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check