There was an error while loading. Please reload this page.
1 parent 56c4048 commit c10e8a1Copy full SHA for c10e8a1
1 file changed
.github/workflows/ci.yml
@@ -19,10 +19,20 @@ jobs:
19
- uses: actions/checkout@v4
20
21
- name: Install Protoc
22
- run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
+ uses: arduino/setup-protoc@v3
23
+
24
+ - name: Set up Python
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: '3.10'
28
+ cache: 'pip'
29
30
- uses: dtolnay/rust-toolchain@stable
31
32
+ - name: Install Linting Tools
33
+ run: |
34
+ pip install black ruff mypy
35
36
- name: Rust Fmt
37
run: make fmt-check
38
@@ -38,7 +48,7 @@ jobs:
48
39
49
40
50
41
51
42
52
43
53
- name: Set up Python
44
54
uses: actions/setup-python@v5
0 commit comments