-
Notifications
You must be signed in to change notification settings - Fork 45
Warp->Axum + OpenAPI documentation #2119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
08765ef
6d8edb0
b890c0d
48ab40d
24c1851
6b87d13
44bce1d
7f793f1
7f43f66
afe9651
7187500
1965273
1d0ef0b
4facc8d
435867b
05ee85e
91041f9
a0b36a1
89a3927
55d072d
fa3e12a
c8ed2cd
d042151
ca23ea4
5c9b049
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,15 +43,15 @@ jobs: | |
| run: make docs-install | ||
|
|
||
| - name: Setup Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| uses: ./.github/actions/setup-rust | ||
| with: | ||
| components: rustfmt | ||
| # This should be in line with the verison in: | ||
| # - Makefile | ||
| # - ./github/workflows/docs.yaml | ||
| # - ./github/workflows/fmt.yaml | ||
| # - ./github/workflows/lint.yaml | ||
| toolchain: nightly | ||
| cache-prefix: docs | ||
|
|
||
| - name: Verify code references in documentation (PR mode) | ||
| if: github.event_name == 'pull_request' | ||
|
|
@@ -130,15 +130,10 @@ jobs: | |
| run: make docs-install | ||
|
|
||
| - name: Setup Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| uses: ./.github/actions/setup-rust | ||
| with: | ||
| components: rustfmt | ||
| # This should be in line with the verison in: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: I don't want to block at all, but it was nice to have this to guide updates, in case we have to use a specific nightly version again. Fine to remove it as AI code assistants are good for this now. However, we might want to stay consistent in the codebase and remove other places where we have the list. |
||
| # - Makefile | ||
| # - ./github/workflows/docs.yaml | ||
| # - ./github/workflows/fmt.yaml | ||
| # - ./github/workflows/lint.yaml | ||
| toolchain: nightly | ||
| cache-prefix: docs | ||
|
|
||
| - name: Build documentation | ||
| run: make docs-build | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️