Skip to content

Commit

Permalink
Bugfix/fix ci (#19)
Browse files Browse the repository at this point in the history
* Don't run CI on every push

Signed-off-by: Andreas Heinrich <[email protected]>

* Run clang-format

Signed-off-by: Andreas Heinrich <[email protected]>

---------

Signed-off-by: Andreas Heinrich <[email protected]>
  • Loading branch information
andistorm authored Mar 27, 2024
1 parent 6e80d58 commit d07aaa9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# TODO: modify to reuse the above workflow to DRY up CI.

name: Build and test liblog
on:
push:
on:
pull_request:
workflow_dispatch:
inputs:
Expand Down
4 changes: 2 additions & 2 deletions examples/test_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ void bax() {
}

bool baz(const char* str) {
auto lambda = [&str](int &i){
auto lambda = [&str](int& i) {
i++;

bax();
};

Expand Down

0 comments on commit d07aaa9

Please sign in to comment.