From 2ae8e2adce70dfcb907794dabb0f6b351dfbbb4c Mon Sep 17 00:00:00 2001 From: Ronaldson Bellande <47253433+RonaldsonBellande@users.noreply.github.com> Date: Thu, 3 Oct 2024 00:17:10 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index f27b7c7..8bb2873 100644 --- a/README.md +++ b/README.md @@ -38,12 +38,6 @@ - **delete **: Delete a file. ## BELLOS Usage -``` -#!/usr/bin/env bellos -# File: hello_world.bellos - -# Simple Hello World script -echo "Hello, World!" ## Website Crates - https://crates.io/crates/bellos From 8be8f9d5e304958a49deade7e1709f321c8e7cfa Mon Sep 17 00:00:00 2001 From: Ronaldson Bellande <47253433+RonaldsonBellande@users.noreply.github.com> Date: Thu, 3 Oct 2024 00:17:53 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8bb2873..91ab612 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ ``` Name: bellos Version: 0.0.1 -Summary: Bellande Operating System Scripting Programming Language +Summary: Bellande Operating System Scripting Language Home-page: github.com/RonaldsonBellande/bellos Author: Ronaldson Bellande Author-email: ronaldsonbellande@gmail.com From 1f08d62a565fa7dbe836b1820a1f06039eb10d7f Mon Sep 17 00:00:00 2001 From: Ronaldson Bellande <47253433+RonaldsonBellande@users.noreply.github.com> Date: Thu, 3 Oct 2024 09:05:50 -0400 Subject: [PATCH 3/3] Create rust.yml --- .github/workflows/rust.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..9fd45e0 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose