rss 2.1.0

Library for serializing the RSS web content syndication format
Documentation
name: Build

on: [push, pull_request]

jobs:
  build:
    runs-on:  ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
          - ubuntu-24.04-arm
          - macos-latest
          - macos-15-intel
          - windows-2025-vs2026
          - windows-11-arm
        rust:
          - nightly
          - beta
          - stable

    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@v1
        with:
          toolchain: ${{ matrix.rust }}
      - name: Build
        run: |
          cargo build --no-default-features --verbose
          cargo build --all-features --verbose
          cargo build --benches --verbose
      - name: Run tests
        run: cargo test --all-features --no-fail-fast --verbose --all -- --nocapture
        env:
          RUST_BACKTRACE: 1