We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2bb89ee + 78c49df commit da3d96aCopy full SHA for da3d96a
.github/workflows/ci.yml
@@ -0,0 +1,19 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions-rust-lang/setup-rust-toolchain@v1
17
+ - name: Format Check
18
+ run: |
19
+ cargo fmt -- --check
src/main.rs
@@ -8,7 +8,7 @@ use axum::{
Router,
body::Body,
http::{StatusCode, header},
- response::{AppendHeaders, IntoResponse, Html},
+ response::{AppendHeaders, Html, IntoResponse},
routing::get,
};
use tokio::fs::File;
0 commit comments