File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1414 runs-on : ubuntu-latest
1515 steps :
1616 - uses : actions/checkout@v4
17+ with :
18+ submodules : ' true'
1719 - name : Build
1820 run : cargo build --release --verbose
1921 - name : Run tests
2729 runs-on : macos-latest
2830 steps :
2931 - uses : actions/checkout@v4
32+ with :
33+ submodules : ' true'
3034 - name : Build
3135 run : cargo build --release --verbose
3236 - name : Run tests
Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ This is work-in-progress.
99If you want to build ` csaf-validator ` on your own, please install Rust (see https://rustup.rs ) and then run
1010
1111``` bash
12+ # make sure, submodules are up-to-date
13+ git submodule update --remote
14+
15+ # run the tests
16+ cargo test
17+
18+ # build for release
1219cargo build --release
1320```
1421
You can’t perform that action at this time.
0 commit comments