Skip to content

Commit

Permalink
Merge pull request #4 from kanekoshoyu/patch/CI
Browse files Browse the repository at this point in the history
Patch/ci
  • Loading branch information
kanekoshoyu committed Jul 23, 2023
2 parents 5737e76 + 3af95b6 commit dd6f33a
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Rust

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

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose


clippy_check:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# kucoin_api

[![](https://img.shields.io/crates/v/kucoin-api)](https://crates.io/crates/kucoin-api)
[![](https://img.shields.io/docsrs/kucoin_api)](https://docs.rs/kucoin_api)
[![](https://img.shields.io/github/license/kanekoshoyu/kucoin_api)](https://github.com/kanekoshoyu/kucoin_api/blob/master/LICENSE)
kucoin_api is an API wrapper for the [Kucoin Cryptocurrency Exchange](https://www.kucoin.com/). This is a derived project from Eric Abrahams's [kucoin_rs](https://github.com/escwdev/kucoin_rs).

Trading cryptocurrencies is high risk and there are no guarentees towards the stability or effectiveness
Expand Down

0 comments on commit dd6f33a

Please sign in to comment.