Skip to content

Add debug logs and clean up client.rs code #106

Add debug logs and clean up client.rs code

Add debug logs and clean up client.rs code #106

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Musl
run: sudo apt install -y musl musl-tools
- name: Update Rust
run: rustup update
- name: Add Musl Target
run: rustup target add x86_64-unknown-linux-musl
- name: Run Musl Build
run: cargo build --target x86_64-unknown-linux-musl --verbose