Compare commits
5 Commits
b5541bd6e4
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 88911c5434 | |||
| c76fefe56b | |||
| 32a9ba5b78 | |||
| 6b7e512975 | |||
| 9073156831 |
18
.github/workflows/test.yaml
vendored
18
.github/workflows/test.yaml
vendored
@@ -1,16 +1,25 @@
|
|||||||
name: Rust CI
|
name: Test Agent
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- "agent/**"
|
||||||
|
- ".github/**"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- "agent/**"
|
||||||
|
- ".github/**"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: agent
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@@ -30,8 +39,7 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-cargo-build-
|
${{ runner.os }}-cargo-build-
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: cargo build --verbose
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose
|
run: cargo test
|
||||||
|
env:
|
||||||
|
RUSTFLAGS: ""
|
||||||
|
|||||||
3
README.ko.md
Normal file
3
README.ko.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# 민주주의 리눅스
|
||||||
|
|
||||||
|
한 개의 리눅스 인스턴스, 그러나 공공재인
|
||||||
@@ -1 +1,5 @@
|
|||||||
# Democracy Linux
|
# Democracy Linux
|
||||||
|
|
||||||
|
[한국어](/README.ko.md)
|
||||||
|
|
||||||
|
One Linux instance, but free to use for everyone.
|
||||||
|
|||||||
@@ -11,5 +11,5 @@ pub fn run_qemu(config: &QemuConfig) {
|
|||||||
.map(|s| s.to_string())
|
.map(|s| s.to_string())
|
||||||
.collect();
|
.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