-
Notifications
You must be signed in to change notification settings - Fork 25
73 lines (58 loc) · 1.71 KB
/
ci.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: CI
on:
push:
branches: [ "develop" ]
pull_request: { }
workflow_dispatch: { }
permissions:
actions: read
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: 'build'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/cleanup
- name: Install Protoc
uses: arduino/setup-protoc@v3
- uses: ./.github/actions/setup-rust
- uses: ./.github/actions/setup-python
- name: Python Lint - Format
run: rye run ruff format --check .
- name: Python Lint - Ruff
run: rye run ruff check .
- name: Rust Lint - Format
run: cargo fmt --all --check
- name: Rust Lint - Clippy
run: cargo clippy --all-features --all-targets
- name: Docs
run: cargo doc --no-deps
- name: Rust Test
run: cargo test --workspace --all-features
- name: Rust Build
run: cargo build --all-features --all-targets
- name: Pytest - PyVortex
run: rye run pytest --benchmark-disable test/
working-directory: pyvortex/
- name: License Check
run: cargo install --locked cargo-deny && cargo deny check
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
miri:
name: 'miri'
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: 1
MIRIFLAGS: -Zmiri-strict-provenance -Zmiri-symbolic-alignment-check -Zmiri-backtrace=full
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/cleanup
- name: Install Protoc
uses: arduino/setup-protoc@v3
- uses: ./.github/actions/setup-rust
- name: Run tests with Miri
run: cargo miri test