Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,15 @@ jobs:
env:
RUSTDOCFLAGS: "--deny warnings"
run: cargo doc --no-deps --all-features --document-private-items

build-cxx:
name: cxx (build)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Build and sanity test
run: |
cd dcsctp-cxx/
make clean all run
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/fuzz/coverage/
/fuzz/target/
/target/
*.o
Loading