Moved Query into separate actions.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2026-02-06 12:06:51 -05:00
parent 7f7e10a373
commit 5ffb79b7f2
12 changed files with 164 additions and 105 deletions

View File

@@ -435,6 +435,10 @@ impl Revision {
fn new() -> Self {
Self {}
}
fn revision(&self) -> isize {
0
}
}
#[cfg(test)]
@@ -444,5 +448,6 @@ mod revisions {
#[test]
fn can_create_empty_revision() {
let rev = Revision::new();
assert_eq!(rev.revision(), 0);
}
}