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>
25 lines
430 B
YAML
25 lines
430 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs_on: ubuntu-latest
|
|
container:
|
|
image: rust:1.86-slim
|
|
steps:
|
|
- name: Run tests
|
|
run: cargo test -- --test-threads=1
|
|
|
|
- name: Build release
|
|
run: cargo build --release
|
|
|
|
- name: Check binary
|
|
run: |
|
|
ls -lh target/release/btest
|
|
target/release/btest --version
|