Compare commits

...

2 commits

Author SHA1 Message Date
b3f58576c6 build and test
Some checks failed
/ test (push) Failing after 3s
2024-05-16 19:47:20 +01:00
37ddea7767 Add sample app to build and test 2024-05-16 19:46:05 +01:00
4 changed files with 16 additions and 2 deletions

View file

@ -3,7 +3,11 @@ jobs:
test:
runs-on: docker
steps:
- name: Test Rust image
uses: https://git.kemitix.net/kemitix/rust@v0.2.0
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v0.2.1
with:
args: test
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v0.2.1
with:
args: build

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "rust"
version = "0.1.0"
edition = "2021"
[dependencies]

3
src/main.rs Normal file
View file

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