Skip to content

qcow2-rs: don't enable direct-io on macos #52

qcow2-rs: don't enable direct-io on macos

qcow2-rs: don't enable direct-io on macos #52

Workflow file for this run

name: qcow2-rs Build & test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v3
- run: sudo apt-get update
- run: sudo apt-get install -y qemu-utils
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test -- --nocapture
- run: cargo test -r