Skip to content

Commit

Permalink
ci: also enable build jobs on pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
ystreet committed Jan 6, 2025
1 parent 77a561d commit 59e84b4
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rust-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
on: [push]

name: Code Coverage

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/rust-doc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
on: [push]

name: Rust docs

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always
RUSTDOCFLAGS: -Dwarnings
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/rust-fmt.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
on: [push]

name: Rust Format

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/rust-fuzz.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
on: [push]

name: Quick Fuzzing

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
Expand Down

0 comments on commit 59e84b4

Please sign in to comment.