hline 0.2.1

a grep-like tool that highlights lines in files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Run Tests
on: [push, pull_request]

jobs:
  test:
    name: Run Tests
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - name: build
        run: cargo check
      - run: cargo clippy --tests
      - run: cargo test