Skip to content

Commit

Permalink
run ci
Browse files Browse the repository at this point in the history
  • Loading branch information
TroyKomodo committed Dec 17, 2024
1 parent 428a0bb commit ae04d5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ name: Security audit
on:
push:
branches-ignore:
<<<<<<< HEAD
- 'automation/**'
=======
- 'automation/brawl/temp/*'
>>>>>>> 685dabf (ignore tmp branch)
paths:
- '.github/workflows/audit.yaml'
- '**/Cargo.toml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
# Note; we don't run the powerset here because it's very slow on CI
# Perhaps we should consider it at some point.
- name: Run tests
run: cargo +nightly llvm-cov nextest --branch --no-fail-fast --all-features --lcov --output-path ./lcov.info --profile ci
run: cargo +nightly llvm-cov nextest --no-fail-fast --all-features --lcov --output-path ./lcov.info --profile ci

- uses: codecov/codecov-action@v5
with:
Expand Down
3 changes: 3 additions & 0 deletions server/src/github/webhook/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,9 @@ async fn handle_event<C: WebhookConfig>(global: Arc<C>, mut event: WebhookEvent)
)
.await?;
}
WebhookEventPayload::CheckSuite(check_suite_event) => {
dbg!(&check_suite_event);
}
WebhookEventPayload::CheckRun(check_run_event) => {
dbg!(&check_run_event);
}
Expand Down

0 comments on commit ae04d5a

Please sign in to comment.