From 84932dd20e4df8f720b3ac5a200726e19ce4935d Mon Sep 17 00:00:00 2001 From: nichkara Date: Sat, 20 Sep 2025 13:47:03 +0200 Subject: [PATCH] Testing action --- .gitea/workflows/test.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..e105430 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,27 @@ +name: Initializing rust environment. +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + os: [ubuntu-20.04] + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Update system + run: | + apt-get update -qy + + - name: Install dependencies + run: | + apt-get install -y curl + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + + - name: Running testbench + run: | + cargo test