Skip to content

Commit

Permalink
ci: validate formatters are installed
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen committed Mar 7, 2024
1 parent 23fa16d commit f395da0
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,22 @@ jobs:
- run: rustup toolchain install stable --profile minimal
- run: rustup component add rustfmt clippy

- run: cargo install taplo-cli
- run: pip install ruff
- name: Install taplo
run: cargo install taplo-cli

- name: Validate taplo
run: taplo --version

- name: Install ruff
run: pip install ruff

- name: Validate ruff
run: ruff --version

- name: Validate biome
run: npx --yes @biomejs/biome --version

- name: Validate nimpretty
run: nimpretty --version

- run: cargo test

0 comments on commit f395da0

Please sign in to comment.