Skip to content

Commit

Permalink
refactor: pr-checks, test: javaFailed test
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Jul 6, 2024
1 parent 4331280 commit 2de1032
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/java-pr-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Java Pull Request Check

on:
push:
branches: [ main ]
paths:
- "packages/java/**"

pull_request:
branches: [ main ]
paths:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/python-pr-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Python Pull Request Check

on:
push:
branches: [ main ]
paths:
- "packages/python/**"

pull_request:
branches: [ main ]
paths:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/typescript-pr-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Typescript Pull Request Check

on:
push:
branches: [ main ]
paths:
- "packages/typescript/**"

pull_request:
branches: [ main ]
paths:
Expand Down
2 changes: 1 addition & 1 deletion packages/java/src/test/java/SimpleMathTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
class SimpleMathTest {
@Test
void testAddition() {
assertEquals(2, 1 + 1, "1 + 1 should equal 2");
assertEquals(3, 1 + 1, "1 + 1 should equal 2");
}
}

0 comments on commit 2de1032

Please sign in to comment.