Skip to content

Commit 66c6195

Browse files
just some help
1 parent ff2558e commit 66c6195

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/pull_request.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,16 @@ jobs:
9999
- name: Setup Biome
100100
uses: biomejs/setup-biome@v2
101101
with:
102-
version: latest
102+
version: "1.9.4"
103+
104+
- name: Echo tool versions
105+
run: |
106+
rustc --version
107+
rustup --version
108+
cargo --version
109+
cargo sqlx --version
110+
cargo clippy --version
111+
biome --version
103112
104113
- name: Run Lints
105114
run: |

justfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@ alias rg := reset-git
1010
# Installs the tools needed to develop
1111
install-tools:
1212
cargo install cargo-binstall
13-
cargo binstall cargo-insta taplo-cli
13+
cargo binstall cargo-insta taplo-cli sqlx-cli
1414
cargo binstall --git "https://github.com/astral-sh/uv" uv
1515
bun install
1616

1717
# Upgrades the tools needed to develop
1818
upgrade-tools:
1919
cargo install cargo-binstall --force
20-
cargo binstall cargo-insta taplo-cli --force
20+
cargo binstall cargo-insta taplo-cli sqlx-cli --force
2121
cargo binstall --git "https://github.com/astral-sh/uv" uv --force
22-
bun install
2322

2423
# Generates code generated files for the linter
2524
gen-lint:

0 commit comments

Comments
 (0)