Use runsc runtime path in OciManager::run_container
#325
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cargo | |
on: [pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
cargo-build-workspace: | |
name: build workspace crates | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: Build Workspace | |
run: cargo build --workspace | |
# check workspace for warnings & treat them as errors | |
clippy: | |
name: clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: Clippy Check | |
run: cargo clippy --all-targets -- -D warnings | |
# check if workspace is formatted, and treat unformatted code as errors. | |
fmt-check: | |
name: fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: Check Formatting | |
run: cargo fmt --all -- --check | |
- name: Install taplo-cli | |
uses: baptiste0928/cargo-install@v2.2.0 | |
with: | |
crate: taplo-cli | |
- name: Run taplo linter | |
run: taplo format --check --verbose | |
cargo-test-workspace: | |
name: test workspace crates | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install toolchain | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: Test Workspace | |
run: cargo test --workspace --features mock_storage |