mirror of
https://github.com/github/codeql-action.git
synced 2025-12-06 07:48:17 +08:00
Support rust analysis
This is supposed to enable rust analysis for the staff ship only.
This commit is contained in:
7
tests/multi-language-repo/Cargo.lock
generated
Normal file
7
tests/multi-language-repo/Cargo.lock
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 4
|
||||
|
||||
[[package]]
|
||||
name = "test"
|
||||
version = "0.0.1"
|
||||
8
tests/multi-language-repo/Cargo.toml
Normal file
8
tests/multi-language-repo/Cargo.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
[package]
|
||||
name = "test"
|
||||
version = "0.0.1"
|
||||
edition = "2021"
|
||||
[[bin]]
|
||||
name = "main"
|
||||
path = "main.rs"
|
||||
|
||||
6
tests/multi-language-repo/main.rs
Normal file
6
tests/multi-language-repo/main.rs
Normal file
@@ -0,0 +1,6 @@
|
||||
fn main() {
|
||||
if true {
|
||||
println!("Hello world!")
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user