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