posix-socket 0.2.0

thin wrapper around POSIX sockets
Documentation
name: tests
on:
  push: { branches: "master" }
  pull_request: { branches: "*" }

jobs:
  build_and_test:
    name: Build and test
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@master
      - name: Build
        uses: actions-rs/cargo@v1
        with:
          command: build
          args: --all-features --color=always
      - name: Test
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --all-features --color=always