Skip to content

Commit

Permalink
update cc
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski committed Jul 24, 2024
1 parent 765a62d commit 0289ff5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: ci

on: [push, pull_request]
on:
push:
# only pushes to main trigger
branches: [main]
pull_request:
# always triggered

jobs:

Expand Down
4 changes: 1 addition & 3 deletions examples/example_01.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ def test_run(diff_code):
if not diff_code:
# get code
computer = helpers.get_computer()
diff_code = helpers.get_code(
entry_point='diff', computer=computer
)
diff_code = helpers.get_code(entry_point='diff', computer=computer)

# Prepare input parameters
diff_parameters = DataFactory('diff')
Expand Down

0 comments on commit 0289ff5

Please sign in to comment.