ci: 🤖 Add formatting check for Markdown #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. <https://fsfe.org> | |
# SPDX-FileCopyrightText: 2023 The WAG development team | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Lint the project | |
on: [push, pull_request] | |
jobs: | |
reuse: | |
name: Lint with REUSE | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: REUSE Compliance Check | |
uses: fsfe/reuse-action@v3 | |
clippy: | |
name: Lint with Clippy | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Clippy | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: Add caching | |
uses: Swatinem/rust-cache@v2 | |
- name: Lint Rust code | |
run: cargo clippy --all-targets --all-features -- -D warnings |