mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2025-07-07 20:06:41 +02:00
Split the server into three crates (#56)
This will make it easier to build variations on the server, or embed it into larger projects.
This commit is contained in:
parent
5769781553
commit
47ce4c1e3b
22 changed files with 1243 additions and 57 deletions
15
.github/workflows/checks.yml
vendored
15
.github/workflows/checks.yml
vendored
|
@ -62,11 +62,24 @@ jobs:
|
|||
override: true
|
||||
minimal: true
|
||||
|
||||
- uses: actions-rs/cargo@v1.0.3
|
||||
- name: taskchampion-sync-server
|
||||
uses: actions-rs/cargo@v1.0.3
|
||||
with:
|
||||
command: rustdoc
|
||||
args: -p taskchampion-sync-server --all-features -- -Z unstable-options --check -Dwarnings
|
||||
|
||||
- name: taskchampion-sync-server-core
|
||||
uses: actions-rs/cargo@v1.0.3
|
||||
with:
|
||||
command: rustdoc
|
||||
args: -p taskchampion-sync-server-core --all-features -- -Z unstable-options --check -Dwarnings
|
||||
|
||||
- name: taskchampion-sync-server-storage-sqlite
|
||||
uses: actions-rs/cargo@v1.0.3
|
||||
with:
|
||||
command: rustdoc
|
||||
args: -p taskchampion-sync-server-storage-sqlite --all-features -- -Z unstable-options --check -Dwarnings
|
||||
|
||||
fmt:
|
||||
runs-on: ubuntu-latest
|
||||
name: "Formatting"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue