diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e08ebf9..e2928c0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,6 @@ on: push: branches: - master - - dev jobs: deploy: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8caee93..20f7469 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,6 @@ on: push: branches: - master - - dev jobs: check: @@ -33,6 +32,10 @@ jobs: cargo clippy cd ch02-03 cargo clippy + cd ../ch03-02 + cargo clippy + cd ../ch03-04 + cargo clippy # uses: actions-rs/cargo@v1 # with: # command: clippy @@ -57,6 +60,10 @@ jobs: cargo build cd ch02-03 cargo build + cd ../ch03-02 + cargo build + cd ../ch03-04 + cargo build # uses: actions-rs/cargo@v1 # with: # command: build @@ -81,7 +88,10 @@ jobs: cargo test cd ch02-03 cargo test - + cd ../ch03-02 + cargo test + cd ../ch03-04 + cargo test doc: runs-on: ${{ matrix.os }} strategy: @@ -103,3 +113,7 @@ jobs: cargo doc --no-deps --all-features cd ch02-03 cargo doc --no-deps --all-features + cd ../ch03-02 + cargo doc --no-deps --all-features + cd ../ch03-04 + cargo doc --no-deps --all-features diff --git a/code/ch03-04/object/Cargo.toml b/code/ch03-04/object/Cargo.toml index e26d4c6..4659942 100644 --- a/code/ch03-04/object/Cargo.toml +++ b/code/ch03-04/object/Cargo.toml @@ -17,4 +17,4 @@ futures = { version = "0.3", default-features = false, features = ["alloc", "asy async-std = { version = "1.9", features = ["attributes", "unstable"] } numeric-enum-macro = "0.2" kernel-hal = { path = "../kernel-hal" } -kernel-hal-unix = { path = "../kernel-hal-unix" } \ No newline at end of file +kernel-hal-unix = { path = "../kernel-hal-unix" }