From 407dc6b2ae9ebbe9ef9fe97e2ac4f71efbe5a2d9 Mon Sep 17 00:00:00 2001 From: kenjitheman Date: Wed, 21 Feb 2024 18:46:22 +0200 Subject: [PATCH] feat: ci-cd --- .github/workflows/rust.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..0d48ee5 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,20 @@ +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@v2 + - name: HH + run: cargo build --release + - name: Tests + run: cargo test --all