We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2088ea3 commit a417ffdCopy full SHA for a417ffd
.devcontainer/cspell-dict/mountix-words.txt
@@ -4,6 +4,7 @@ clippy
4
defaultauthdb
5
dotenv
6
dotenvy
7
+dtolnay
8
geosearch
9
geospatial
10
INITDB
.github/workflows/test-and-lint.yml
@@ -0,0 +1,28 @@
1
+name: Test and Lint
2
+
3
+on:
+ push:
+ branches-ignore:
+ - main
+ pull_request:
+ branches:
+ - '*'
+ workflow_dispatch:
11
+ workflow_call:
12
13
+jobs:
14
+ test-and-lint:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Install Rust
20
+ uses: dtolnay/rust-toolchain@stable
21
+ with:
22
+ components: rustfmt, clippy
23
24
+ - name: Check formatting
25
+ run: cargo fmt -- --check
26
27
+ - name: Run Clippy
28
+ run: cargo clippy -- -D warnings
0 commit comments