ads 0.4.4

Client for the Beckhoff Automation Device Specification protocol for PLCs
Documentation
name: CI

on:
  push:
    branches: [master]
  pull_request:

jobs:
  test:
    name: Test
    runs-on: ubuntu-latest
    strategy:
      matrix:
        toolchain:
          - 1.63.0
          - stable
          - nightly
    steps:
      - uses: actions/checkout@v4
      - uses: actions-rust-lang/setup-rust-toolchain@v1
        with:
          components: clippy
          toolchain: ${{ matrix.toolchain }}
      - run: cargo clippy --all-targets
      - run: cargo test --all