From 379a9924210ac5e9d2bd6c6ca6e62c7b6fbccae7ffd99e1c682e546df84664db Mon Sep 17 00:00:00 2001 From: Kira Date: Tue, 30 Jun 2026 03:18:49 +0200 Subject: [PATCH] Adding gitlab action for test purposes. --- .gitea/workflows/build_release.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/build_release.yaml diff --git a/.gitea/workflows/build_release.yaml b/.gitea/workflows/build_release.yaml new file mode 100644 index 0000000..0e99ff4 --- /dev/null +++ b/.gitea/workflows/build_release.yaml @@ -0,0 +1,20 @@ +name: Build Release + +on: + push: + branches: [ myaster ] + pull_request: + branches: [ myaster ] + +jobs: + build: + runs-on: rust-slim-trixie + steps: + - name: Check out repository code + uses: actions/checkout@v4 + + - name: Build and test + run: cargo test --all-features + + - name: Check formatting + run: cargo fmt --check \ No newline at end of file