wikinet 0.0.1

Follow the first link on Wikipedia till you reach philosophy
Documentation
name: Rust

on:
  - push
  - pull_request
  - workflow_dispatch

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --all-targets --all-features --verbose
    - name: Run tests
      run: cargo test --all-targets --all-features --verbose