Skip to content

ci: Bump actions/checkout from 4.1.5 to 4.1.6 #30

ci: Bump actions/checkout from 4.1.5 to 4.1.6

ci: Bump actions/checkout from 4.1.5 to 4.1.6 #30

Workflow file for this run

name: Rust
permissions: read-all
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- name: Build
run: cargo build --verbose
- name: Format
run: cargo fmt --check
# TODO: some KVM related tests cannot run in github runners.
# - name: Run tests
# run: cargo test --verbose
- name: Clippy
run: cargo clippy