refactor: rename VM instance from 'torrust-vm' to 'torrust-tracker-vm' #55
This file contains hidden or 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: Testing | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
format: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
- id: setup | |
name: Setup Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- id: cache | |
name: Enable Workflow Cache | |
uses: Swatinem/rust-cache@v2 | |
- id: format | |
name: Run Formatting-Checks | |
run: cargo fmt --check | |
check: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
needs: format | |
strategy: | |
matrix: | |
toolchain: [stable, nightly] | |
steps: | |
- id: checkout | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
- id: setup | |
name: Setup Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy | |
- id: cache | |
name: Enable Workflow Cache | |
uses: Swatinem/rust-cache@v2 | |
- id: tools | |
name: Install Tools | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-machete | |
- id: check | |
name: Run Build Checks | |
run: cargo check --tests --benches --examples --workspace --all-targets --all-features | |
- id: docs | |
name: Check Documentation | |
env: | |
RUSTDOCFLAGS: "-D warnings" | |
run: cargo doc --no-deps --bins --examples --workspace --all-features | |
- id: clean | |
name: Clean Build Directory | |
run: cargo clean | |
- id: deps | |
name: Check Unused Dependencies | |
run: cargo machete | |
build: | |
name: Build on ${{ matrix.os }} (${{ matrix.toolchain }}) | |
runs-on: ${{ matrix.os }} | |
needs: check | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
toolchain: [stable, nightly] | |
steps: | |
- id: checkout | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
- id: setup | |
name: Setup Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- id: cache | |
name: Enable Workflow Cache | |
uses: Swatinem/rust-cache@v2 | |
- id: build | |
name: Build Project | |
run: cargo build --verbose --workspace --all-features | |
unit: | |
name: Units | |
runs-on: ubuntu-latest | |
needs: check | |
strategy: | |
matrix: | |
toolchain: [stable, nightly] | |
steps: | |
- id: checkout | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
- id: setup | |
name: Setup Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- id: cache | |
name: Enable Job Cache | |
uses: Swatinem/rust-cache@v2 | |
- id: test-docs | |
name: Run Documentation Tests | |
run: cargo test --doc --workspace | |
- id: test | |
name: Run Unit Tests | |
run: cargo test --tests --benches --examples --workspace --all-targets --all-features |