We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88202ce commit ee66b65Copy full SHA for ee66b65
.github/workflows/rust.yml
@@ -52,4 +52,14 @@ jobs:
52
- name: Test consts
53
run: |
54
cd consts/
55
+ cargo test --verbose
56
+
57
+ - name: Build strings
58
+ run: |
59
+ cd strings/
60
+ cargo build --verbose
61
62
+ - name: Test strings
63
64
65
cargo test --verbose
strings/Cargo.toml
@@ -0,0 +1,8 @@
1
+[package]
2
+name = "strings"
3
+version = "0.1.0"
4
+edition = "2021"
5
6
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8
+[dependencies]
strings/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}
0 commit comments