ipnet-trie 0.3.0

IPv4 and IPv6 network fast lookup trie.
Documentation
name: Build and test

on:
  push:
    branches: [ main ]
    paths-ignore:
      - '**.md'
  pull_request:
    branches: [ main ]
    paths-ignore:
      - '**.md'

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - name: Build
        run: cargo build

      - name: Build with export feature
        run: cargo build --features export

      - name: Run tests
        run: cargo test

      - name: Run format check
        run: cargo fmt --check