From 7c50bbf01a5252b23f8c3f9d1b7eab3e63f5f066 Mon Sep 17 00:00:00 2001 From: AI Agent Date: Sat, 14 Mar 2026 18:15:58 -0600 Subject: [PATCH] fix tests --- .gitea/workflows/smoke-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/smoke-tests.yml b/.gitea/workflows/smoke-tests.yml index 2f36c20..12f703e 100644 --- a/.gitea/workflows/smoke-tests.yml +++ b/.gitea/workflows/smoke-tests.yml @@ -1,19 +1,19 @@ name: Smoke tests -on: [push, pull_request] +on: + workflow_dispatch: + push: jobs: smoke: name: Build and smoke test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout Code + uses: actions/checkout@v4 - name: Install Rust run: sudo apt install -y cargo - - name: clone repository - action: actions/checkout@v4 - - name: Build run: cargo build