rust-mqtt/.github/workflows/unit_tests.yaml
obabec b58e8318b6
Move tests and latest rust (#8)
* Move tests and latest rust
2022-03-16 11:38:30 +01:00

18 lines
343 B
YAML

on: [pull_request]
name: UnitTests
jobs:
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run Unit tests
run: RUST_LOG=trace cargo test unit