mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-11-25 13:23:44 +00:00
test(ci): add fmt, clippy, doc, and msrv tests to CI (#926)
* test(ci): add fmt, clippy, doc, and msrv tests to CI * test(ci): check and build typst-preview * fix: checks
This commit is contained in:
parent
e1a5f0cdd7
commit
d9717fffa2
17 changed files with 50 additions and 5 deletions
|
|
@ -9,6 +9,7 @@ license.workspace = true
|
|||
edition.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["no-content-hint"]
|
||||
|
|
|
|||
|
|
@ -109,7 +109,9 @@ impl ApplyChecker for ApplyTypeChecker<'_, '_> {
|
|||
|
||||
match sig {
|
||||
Sig::TupleCons(cons) => {
|
||||
crate::log_debug_ct!("tuple at check on tuple elem: {cons:?} {p0:?}");
|
||||
crate::log_debug_ct!(
|
||||
"tuple at check on tuple elem: {cons:?} {p0:?}"
|
||||
);
|
||||
let sel = match selector {
|
||||
Ok(i) => cons.get(i).cloned(),
|
||||
Err(_) => None,
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ pub struct ModuleDependency {
|
|||
/// Construct the module dependencies of the given context.
|
||||
///
|
||||
/// It will scan all the files in the context, using
|
||||
/// [`AnalysisContext::source_files`], and find the dependencies and dependents
|
||||
/// [`LocalContext::source_files`], and find the dependencies and dependents
|
||||
/// of each file.
|
||||
pub fn construct_module_dependencies(
|
||||
ctx: &mut LocalContext,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue