Skip to content

Make serde an optional dependency of zeroconf #145

Make serde an optional dependency of zeroconf

Make serde an optional dependency of zeroconf #145

Workflow file for this run

name: Rust CI
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: zeroconf-rs
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
features: [serde, ""]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.os == 'windows-latest' && 'x86_64-pc-windows-msvc' || matrix.os == 'macos-latest' && 'x86_64-apple-darwin' || 'x86_64-unknown-linux-gnu' }}
- name: Prepare for Linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt -y install avahi-daemon libavahi-client-dev
sudo systemctl start avahi-daemon.service
- name: Prepare for Windows
if: matrix.os == 'windows-latest'
run: "choco install -y bonjour"
- name: Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --features "${{ matrix.features }}"
- name: Run tests
run: cargo test --features "${{ matrix.features }}" -- --skip service_register_is_browsable
- name: Check formatting
run: cargo fmt -- --check
- name: Run Clippy
run: cargo clippy --features "${{ matrix.features }}" -- -D warnings