mirror of
https://github.com/lune-org/lune.git
synced 2024-12-13 05:20:37 +00:00
27 lines
437 B
YAML
27 lines
437 B
YAML
|
name: Lint
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
name: Lint
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Install Rust
|
||
|
uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: stable
|
||
|
override: true
|
||
|
components: rustfmt, clippy
|
||
|
|
||
|
- name: Rustfmt
|
||
|
run: cargo fmt -- --check
|
||
|
|
||
|
- name: Clippy
|
||
|
run: cargo clippy
|