Skip to content

chore(release): Bump version to 10.1.0 Diamond Grade [CONFIRMED] #63

chore(release): Bump version to 10.1.0 Diamond Grade [CONFIRMED]

chore(release): Bump version to 10.1.0 Diamond Grade [CONFIRMED] #63

Workflow file for this run

name: AetherOS CI
on:
push:
branches: [ main, master, develop ]
pull_request:
branches: [ main, master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust (stable)
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v3
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
- name: Install cargo-audit
run: cargo install cargo-audit --version 0.17.4 || true
- name: Check Formatting
run: cargo fmt --all -- --check
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build Kernel and other components
run: cargo build --workspace --release
- name: Run tests
run: cargo test --workspace --all-features --quiet
- name: Security audit
run: cargo audit || true