forked from GothenburgBitFactory/taskwarrior
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for cloud sync, specifically GCP
This adds generic support for sync to cloud services, with specific spuport for GCP. Adding others -- so long as they support a compare-and-set operation -- should be comparatively straightforward. The cloud support includes cleanup of unnecessary data, and should keep total space usage roughly proportional to the number of tasks.
- Loading branch information
Showing
36 changed files
with
3,920 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: "1.65" # MSRV | ||
toolchain: "1.70.0" # MSRV | ||
override: true | ||
|
||
- uses: actions-rs/[email protected] | ||
|
@@ -98,7 +98,7 @@ jobs: | |
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: "1.65" # MSRV | ||
toolchain: "1.70.0" # MSRV | ||
override: true | ||
|
||
- uses: actions-rs/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ jobs: | |
strategy: | ||
matrix: | ||
rust: | ||
- "1.65" # MSRV | ||
- "1.70.0" # MSRV | ||
- "stable" | ||
os: | ||
- ubuntu-latest | ||
|
Oops, something went wrong.