pci-info 0.2.1

A crate to enumerate PCI devices on desktop operating systems and/or parse PCI configuration headers
Documentation
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