ic-logger 0.1.0

A logger for the Internet Computer
Documentation
name: ci

on:
  pull_request:
  push:
    branches:
      - main

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          profile: minimal
          components: rustfmt, clippy

      - run: cargo clippy --all -- -D warnings
      - run: cargo fmt --all -- --check
      - run: cargo test