zed-discord-presence/.github/actions/check/action.yml

18 lines
297 B
YAML
Raw Normal View History

2024-07-19 16:26:21 +02:00
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