Skip to content

Merge pull request #16 from chriamue/dqn #16

Merge pull request #16 from chriamue/dqn

Merge pull request #16 from chriamue/dqn #16

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