-
Notifications
You must be signed in to change notification settings - Fork 542
44 lines (40 loc) · 1.07 KB
/
rust-test.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
name: Rust CI
on:
pull_request:
types: [ opened, synchronize, edited ]
paths:
- 'tuta-sdk/**'
- 'packages/node-mimimi/**'
- '.github/workflows/rust-test.yml'
push:
branches:
- dev-*
- '*/dev'
env:
RUSTFLAGS: "--cfg ci" # turns off some integration tests that need a server to pass
jobs:
test:
runs-on: ubuntu-latest
permissions:
actions: none
checks: none
contents: read
deployments: none
id-token: none
issues: none
discussions: none
packages: none
pages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- uses: ./.github/shared/setup-rust
- name: rust format
run: cargo fmt --check
- name: rust warning check with clippy
run: cargo clippy --all --no-deps -- -Dwarnings # -Dwarnings changes warnings to errors so that the check fails
- name: rust tests
run: cargo test --all