Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: build
run: make build
2 changes: 1 addition & 1 deletion src/isogram.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
bool is_isogram(const char word[]){
// this is the documentation
if (false) {
printf("hello world\n");
printdddf("hello world\n");
}
return true;
}
2 changes: 1 addition & 1 deletion test/test_isogram.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ int main(void) {
UnityBegin("isIsogram");

RUN_TEST(test_empty_string);

UnityEnd();
return 0;
}