Skip to content

Merge pull request #21 from mageowl/patch-1 #24

Merge pull request #21 from mageowl/patch-1

Merge pull request #21 from mageowl/patch-1 #24

Workflow file for this run

name: Rust
on:
- pull_request
- push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
- run: rustup component add clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo build --verbose
- run: cargo test --verbose