feat: add basic ci
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-10-22 12:31:53 +02:00
parent 71b5a63700
commit 1f88524c16
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
3 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,7 @@
[workspace]
members = [
"crates/*"
"crates/*",
"ci"
]
resolver = "2"

8
ci/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "ci"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
ci/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}