Fix CI: use act runner workspace directly, no manual clone
Some checks failed
CI / test (push) Failing after 2s
Build & Release / build-linux-x86_64 (push) Failing after 14s
Build & Release / build-linux-aarch64 (push) Failing after 16s
Build & Release / build-linux-armv7 (push) Failing after 15s
Build & Release / release (push) Has been skipped

The act runner already mounts the repo at the workspace path.
Removed manual git clone and working_directory overrides.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Siavash Sameni
2026-03-31 14:23:33 +04:00
parent 99a751fa28
commit 7f701d8442
2 changed files with 21 additions and 67 deletions

View File

@@ -6,34 +6,19 @@ on:
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs_on: ubuntu-latest
container:
image: rust:1.86-slim
steps:
- name: Install git
run: apt-get update && apt-get install -y --no-install-recommends git
- name: Checkout
run: |
git config --global --add safe.directory '*'
git clone --depth 1 --branch ${GITHUB_REF_NAME:-main} ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git .
working_directory: /workspace
- name: Run tests
run: cargo test -- --test-threads=1
working_directory: /workspace
- name: Build release
run: cargo build --release
working_directory: /workspace
- name: Check binary
run: |
ls -lh target/release/btest
target/release/btest --version
working_directory: /workspace