Skip to content

Adds enumerator for FreeBSD based on /dev/pci ioctl operations (RO) #5

Adds enumerator for FreeBSD based on /dev/pci ioctl operations (RO)

Adds enumerator for FreeBSD based on /dev/pci ioctl operations (RO) #5

name: CI-Rust-Stable
on:
push:
branches: [ "main", "release/**" ]
pull_request:
branches: [ "main", "release/**" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Sysinfo
run: uname -a && cargo -V && lspci -nn -v
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy -- -D warnings
- name: Fmt
run: cargo fmt --all -- --check