chore(deps): bump lycheeverse/lychee-action in /.github/workflows #69
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: 2024 Tomodachi94 | |
# | |
# SPDX-License-Identifier: MIT | |
name: Checks | |
on: | |
pull_request: | |
push: | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v30 | |
with: | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
accept-flake-config = true | |
- uses: DeterminateSystems/magic-nix-cache-action@87b14cf437d03d37989d87f0fa5ce4f5dc1a330b | |
- run: "nix develop .#" | |
name: "Prefetch CI dependencies" | |
- run: nix develop .# --command just vale | |
name: "Run the Vale linter" | |
- run: nix develop .# --command just awesome-lint | |
name: "Run the awesome-lint linter" | |
- run: nix develop .# --command just check-reuse | |
name: "Run the REUSE linting tool" | |
- run: nix develop .# --command just check-toc | |
name: "Run DocToc and fail if any changes are present" |