diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d24cfd8..e73ca07 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -3,6 +3,7 @@ on: [push, pull_request] jobs: test: runs-on: ubuntu-latest + timeout-minutes: 15 steps: - name: Checkout code uses: actions/checkout@v4 @@ -13,10 +14,10 @@ jobs: rust-version: stable - name: Build - run: cargo build --all-features --verbose + run: cargo build --verbose 2>&1 - name: Run tests - run: cargo test --verbose + run: cargo test --verbose 2>&1 - name: Check formatting - run: cargo fmt -- --check + run: cargo fmt -- --check 2>&1