Skip to content
Merged
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
13 changes: 10 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
name: rust
on:
push:
branches: ["main"]
branches:
- main
- develop
- release/*
pull_request:
branches: ["main"]
branches:
- main
- develop
- release/*

jobs:
build-and-validate:
Expand Down Expand Up @@ -59,7 +66,7 @@ jobs:
- name: Run Tests
run: cargo test --verbose

- name: Generate Documentation (${{ matrix.RUSTDOCFLAGS }}, ${{ matrix.toolchain }})
- name: Generate Documentation (${{ matrix.DOCTYPE }}, ${{ matrix.toolchain }})
run: cargo doc --no-deps --all-features

- name: Install and Run Security Audit (Nightly Only)
Expand Down