feat: config system
Some checks failed
Lint / lint (push) Failing after 5m15s

This commit is contained in:
2025-06-02 16:45:07 +09:00
parent 010cbb4161
commit 93676e7bff
7 changed files with 66 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
name: Lint
run-name: ${{ gitea.actor }} is linting
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Lint
run: cargo clippy