srch 0.0.1

Text Search For Humans
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: build
on: [push, pull_request]

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-16.04, ubuntu-18.04, ubuntu-20.04]

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose