Files
uefi-video/.gitea/workflows/lint.yaml
mincomk 93676e7bff
Some checks failed
Lint / lint (push) Failing after 5m15s
feat: config system
2025-06-02 16:45:07 +09:00

20 lines
423 B
YAML

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