Skip to content

Commit

Permalink
Added submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
oxisto committed Dec 8, 2024
1 parent 266eba0 commit a82cffe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build
run: cargo build --release --verbose
- name: Run tests
Expand All @@ -27,6 +29,8 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build
run: cargo build --release --verbose
- name: Run tests
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ This is work-in-progress.
If you want to build `csaf-validator` on your own, please install Rust (see https://rustup.rs) and then run

```bash
# make sure, submodules are up-to-date
git submodule update --remote

# run the tests
cargo test

# build for release
cargo build --release
```

Expand Down

0 comments on commit a82cffe

Please sign in to comment.