-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (52 loc) · 1.41 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Cargo Test
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
workflow_dispatch:
schedule:
- cron: "50 0 * * *"
jobs:
linux:
name: linux tests
runs-on: ubuntu-latest
steps:
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install libusb-1.0-0-dev libudev-dev
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: static checks
run: cargo clippy --all-targets --all-features -- -D warnings
- name: run tests
run: cargo test --verbose -- --nocapture
macos:
name: macos tests
runs-on: macos-latest
steps:
- name: install dependencies
run: rustup component add clippy --toolchain stable-aarch64-apple-darwin
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: static checks
run: cargo clippy --all-targets --all-features -- -D warnings
- name: run tests
run: cargo test --verbose -- --nocapture
windows:
name: windows tests
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: static checks
run: cargo clippy --all-targets --all-features -- -D warnings
- name: run tests
run: cargo test --verbose -- --nocapture