From f1b9238f5a3a97253cb26fe794855616eac9a05b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?jo=C3=A3ozinho=2Em?= <105161249+j-moreno-c-r@users.noreply.github.com> Date: Tue, 22 Jul 2025 15:41:59 -0300 Subject: [PATCH] Create rust.yml Add a Ci --- .github/workflows/rust.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..ee9ed33 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,24 @@ +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 + - name: Lint + run: cargo clippy