mirror of
https://github.com/xHyroM/zed-discord-presence.git
synced 2024-11-10 00:18:06 +01:00
18 lines
297 B
YAML
18 lines
297 B
YAML
|
name: Check
|
||
|
description: Lints & formats
|
||
|
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- name: check
|
||
|
shell: bash
|
||
|
run: cargo check --all
|
||
|
|
||
|
- name: fmt
|
||
|
shell: bash
|
||
|
run: cargo fmt --all -- --check
|
||
|
|
||
|
- name: clippy
|
||
|
shell: bash
|
||
|
run: cargo clippy --all -- -D warnings
|