nc 0.9.7

Access system calls directly
Documentation
name: ci
on:
  pull_request:
    branches:
    - main
  push:
    branches:
    - main
  schedule:
  - cron: '00 01 * * *'

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    name: test
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        build:
        - pinned
        - stable
        - nightly
        include:
        - build: pinned
          os: ubuntu-22.04
          rust: 1.63.0
        - build: stable
          os: ubuntu-22.04
          rust: stable
        - build: nightly
          os: ubuntu-22.04
          rust: nightly
    steps:
    - uses: actions/checkout@v2
    - run: cargo clippy
    - run: cargo build --verbose
    - run: cargo doc --verbose
    - run: cargo test --verbose
    - run: cargo build --verbose --no-default-features
    - run: cargo test --verbose --no-default-features