feat: revamp db, autorole add, autorole toggle #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clippy | |
permissions: write-all | |
on: | |
push: | |
paths: | |
- '**.rs' | |
pull_request: | |
paths: | |
- '**.rs' | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: Setup Rust caching | |
uses: Swatinem/rust-cache@v2 | |
- name: Run clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --features johnny,verbose,sqlite,moderation,image,tui |