aocf 0.1.21

A crate and CLI helper tool for Advent of Code
Documentation
name: check

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        components: clippy
        override: true
    - name: Install dependencies
      run: sudo apt-get install -y libsqlite3-dev
    - name: Run cargo-check
      run: |
        cargo install cargo-check
        cargo check --verbose