Skip to content

Commit

Permalink
feat(async): add extra async versions of APIs (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat authored Oct 14, 2019
1 parent 642e40b commit 18190bf
Show file tree
Hide file tree
Showing 14 changed files with 1,536 additions and 228 deletions.
33 changes: 18 additions & 15 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
name: Rust

on: [push]
on: [push, pull_request]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
rust: [stable, beta, nightly]
rust: [beta, nightly]
os: [ubuntu-latest, windows-latest]

steps:
- uses: hecrj/setup-rust-action@master
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@v1
- name: Components
run: rustup component add clippy
- name: Build
run: cargo build --verbose
- name: Clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test --verbose
- uses: hecrj/setup-rust-action@master
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@v1
- name: Add Clippy
run: rustup component add clippy
- name: Add Rustfmt
run: rustup component add rustfmt
- name: Build
run: cargo build --verbose
- name: Rustfmt
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test --verbose
Loading

0 comments on commit 18190bf

Please sign in to comment.