Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/.github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
architecture: [ubuntu-24.04, ubuntu-24.04-arm]
language: [rust]
language: [rust, shell]
steps:
- name: Checkout code.
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
Expand Down
4 changes: 4 additions & 0 deletions rust/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ fix-yaml-formatting:
check-rust-linting:
cargo clippy --verbose $(CARGO_LOCKED) -- -D warnings

.PHONY: check-shell-linting
check-shell-linting:
shellcheck ci/*.sh

.PHONY: check-github-actions-workflows-linting
check-github-actions-workflows-linting:
actionlint -verbose -color
Expand Down
1 change: 1 addition & 0 deletions rust/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
rustWithTargets
# Shell scripts.
pkgs.shfmt
pkgs.shellcheck
# GitHub Action Workflows.
pkgs.yamlfmt
pkgs.actionlint
Expand Down