We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c463043 commit bc8fb42Copy full SHA for bc8fb42
.pre-commit-config.yaml
@@ -76,6 +76,12 @@ repos:
76
entry: cargo +1.82.0 fmt --manifest-path ./apps/fortuna/Cargo.toml --all
77
pass_filenames: false
78
files: apps/fortuna
79
+ - id: cargo-sqlx-fortuna
80
+ name: Cargo sqlx prepare check for Fortuna
81
+ language: "script"
82
+ entry: ./apps/fortuna/check-sqlx.sh
83
+ pass_filenames: false
84
+ files: apps/fortuna
85
- id: cargo-clippy-fortuna
86
name: Cargo clippy for Fortuna
87
language: "rust"
apps/fortuna/check-sqlx.sh
@@ -0,0 +1,3 @@
1
+#!/bin/bash
2
+cd apps/fortuna || exit 1
3
+cargo sqlx prepare --check
0 commit comments