From 7c0dcd142daef71dfb9481d5bb263a02258f63df Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Fri, 9 May 2025 23:25:06 +0200 Subject: [PATCH] workflows: add building workflow --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..a4f8b89 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Cargo Build & Test + +on: + push: + branches: [ $default-branch ] + pull_request: + branches: [ $default-branch ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build_and_test: + name: dix - latest + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: cargo build --verbose + - run: cargo test --verbose +