Skip to content

feat: added async client #53

feat: added async client

feat: added async client #53

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Make env file
uses: SpicyPizza/[email protected]
with:
envkey_KEY: ${{ secrets.KEY }}
file_name: .env
fail_on_empty: true
- name: Install rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: 1.64.0
- name: Build
run: cargo build -v --release
- name: Test
run: cargo test -v --release