Skip to content

Merge pull request #6 from becmer/main #19

Merge pull request #6 from becmer/main

Merge pull request #6 from becmer/main #19

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: hecrj/setup-rust-action@v1
- name: Run clippy
run: |
cargo clippy
- name: Run unit tests
run: |
cargo test --all-features --all-targets