CI: don't run CI checks on pull_request_closed and such

This commit is contained in:
Alain Emilia Anna Zscheile 2024-09-30 21:11:18 +02:00 committed by mikolaj
parent e08a59cd74
commit 49d7b3306b
3 changed files with 6 additions and 0 deletions

View File

@ -12,3 +12,5 @@ steps:
commands:
- rustup default "$CHANNEL"
- cargo build --features "$FEATURES" --
when:
event: [pr, push, tag]

View File

@ -12,3 +12,5 @@ steps:
commands:
- rustup default "$CHANNEL"
- cargo build --features "$FEATURES" --bin "topola-egui"
when:
event: [pr, push, tag]

View File

@ -12,3 +12,5 @@ steps:
commands:
- rustup default "$CHANNEL"
- cargo test --verbose --features "$FEATURES"
when:
event: [pr, push, tag]