From 9696a037e391d2f35e302cf51b62db9248c9689e Mon Sep 17 00:00:00 2001 From: Vitor Hideyoshi Nakazone Batista Date: Mon, 26 Feb 2024 02:06:21 -0300 Subject: [PATCH] Adds Github Action for Build Testing --- .github/workflows/test-build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test-build.yml diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml new file mode 100644 index 0000000..66b44d2 --- /dev/null +++ b/.github/workflows/test-build.yml @@ -0,0 +1,17 @@ +name: Rust + +on: + push + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose