File tree Expand file tree Collapse file tree 1 file changed +1
-42
lines changed
Expand file tree Collapse file tree 1 file changed +1
-42
lines changed Original file line number Diff line number Diff line change 77 CARGO_TERM_COLOR : always
88
99jobs :
10- rust-unit-tests :
11- name : Rust Unit Tests
12- runs-on : ubuntu-latest
13- steps :
14- - name : Checkout repository
15- uses : actions/checkout@v4
16-
17- - name : Install system dependencies
18- run : |
19- sudo apt-get update
20- sudo apt-get install -y libseccomp-dev pkg-config build-essential
21-
22- - name : Set up Rust
23- 24-
25- - name : Run unit tests
26- run : cargo test --workspace --lib --bins
27-
28- build :
29- name : Build
30- runs-on : ubuntu-latest
31- steps :
32- - name : Checkout repository
33- uses : actions/checkout@v4
34-
35- - name : Install system dependencies
36- run : |
37- sudo apt-get update
38- sudo apt-get install -y libseccomp-dev pkg-config build-essential
39-
40- - name : Set up Rust
41- 42- with :
43- components : clippy
44-
45- - name : Build release
46- run : cargo build --release --workspace
47-
48- - name : Clippy
49- run : cargo clippy --workspace --all-targets -- -D warnings
50-
5110 functional-tests :
5211 name : Functional Tests
5312 runs-on : ubuntu-latest
6726
6827 - name : Run functional tests with devtool
6928 run : |
70- ./tools/devtool -y test -- integration_tests/functional/
29+ ./tools/devtool -y test
You can’t perform that action at this time.
0 commit comments