Compare commits
3 Commits
6b7e512975
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 88911c5434 | |||
| c76fefe56b | |||
| 32a9ba5b78 |
9
.github/workflows/test.yaml
vendored
9
.github/workflows/test.yaml
vendored
@@ -6,11 +6,13 @@ on:
|
||||
- main
|
||||
paths:
|
||||
- "agent/**"
|
||||
- ".github/**"
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- "agent/**"
|
||||
- ".github/**"
|
||||
|
||||
jobs:
|
||||
test:
|
||||
@@ -37,8 +39,7 @@ jobs:
|
||||
restore-keys: |
|
||||
${{ runner.os }}-cargo-build-
|
||||
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
run: cargo test
|
||||
env:
|
||||
RUSTFLAGS: ""
|
||||
|
||||
@@ -11,5 +11,5 @@ pub fn run_qemu(config: &QemuConfig) {
|
||||
.map(|s| s.to_string())
|
||||
.collect();
|
||||
|
||||
let handle = Command::new(&config.executable).args(&args).spawn();
|
||||
let _handle = Command::new(&config.executable).args(&args).spawn();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user