deepl-api 0.4.3

Bindings and a commandline tool for the DeepL REST API (https://www.deepl.com/docs-api/)
Documentation
name: Rust

on: [push]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      env:
        DEEPL_API_KEY: ${{ secrets.DEEPL_API_KEY }}
      run: cargo test --verbose