Skip to content

Commit ee66b65

Browse files
committed
strings + workflow
1 parent 88202ce commit ee66b65

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.github/workflows/rust.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,14 @@ jobs:
5252
- name: Test consts
5353
run: |
5454
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+
run: |
64+
cd strings/
5565
cargo test --verbose

strings/Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)