brcode 1.4.2

Crate to parse and emit BR Codes
Documentation
name: Clojure CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Install dependencies
      run: | 
        cd clj-brcode 
        lein deps
    - name: Run tests
      run: |
        cd clj-brcode 
        curl -s https://api.github.com/repos/naomijub/brcode/releases/latest \
        | grep "browser_download_url.*so" \
        | cut -d : -f 2,3 \
        | tr -d \" \
        | wget -qi -
        export LD_LIBRARY_PATH=.
        lein test