Skip to content
This repository has been archived by the owner on Jan 11, 2025. It is now read-only.

Add Curseforge Support #24

Add Curseforge Support

Add Curseforge Support #24

Workflow file for this run

name: Clippy
# didnt write this btw 🤡
on:
pull_request:
branches: [ "main" ]
jobs:
clippy:
name: Code Lint
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1 #@v1
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- name: Run rust-clippy
run:
cargo clippy
--all-features
--message-format=json