diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 14af2fd..4dbbd64 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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: @@ -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)